taiwanese_news_parser 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +35 -2
- data/bin/taiwanese_news_parser +16 -0
- data/lib/taiwanese_news_parser/parser.rb +5 -3
- data/lib/taiwanese_news_parser/parser/china_times.rb +9 -1
- data/lib/taiwanese_news_parser/parser/china_times_money.rb +72 -0
- data/lib/taiwanese_news_parser/parser/cna.rb +1 -1
- data/lib/taiwanese_news_parser/parser/liberty_times.rb +5 -6
- data/lib/taiwanese_news_parser/parser/liberty_times_news.rb +66 -0
- data/lib/taiwanese_news_parser/parser/udn.rb +4 -1
- data/lib/taiwanese_news_parser/version.rb +1 -1
- data/spec/taiwanese_news_parser/parser/china_times_money_s1.html +519 -0
- data/spec/taiwanese_news_parser/parser/china_times_money_spec.rb +21 -0
- data/spec/taiwanese_news_parser/parser/china_times_s5.html +830 -0
- data/spec/taiwanese_news_parser/parser/china_times_spec.rb +10 -0
- data/spec/taiwanese_news_parser/parser/cna_s1.html +1240 -927
- data/spec/taiwanese_news_parser/parser/cna_s2.html +1905 -0
- data/spec/taiwanese_news_parser/parser/cna_spec.rb +11 -1
- data/spec/taiwanese_news_parser/parser/liberty_times_news_s1.html +638 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_news_s2.html +641 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_news_s3.html +632 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_news_spec.rb +51 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_s2.html +116 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_s3.html +110 -0
- data/spec/taiwanese_news_parser/parser/liberty_times_spec.rb +15 -5
- data/spec/taiwanese_news_parser/parser/udn_s2.html +2250 -0
- data/spec/taiwanese_news_parser/parser/udn_spec.rb +10 -0
- data/taiwanese_news_parser.gemspec +1 -0
- metadata +65 -26
- data/spec/taiwanese_news_parser/parser/liberty_times_s1.html +0 -145
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe TaiwaneseNewsParser::Parser::LibertyTimesNews do
|
4
|
+
describe '#parse' do
|
5
|
+
before do
|
6
|
+
Timecop.freeze(Time.local(2013,6,29,9,13))
|
7
|
+
end
|
8
|
+
# layout at April 2014
|
9
|
+
it do
|
10
|
+
url = 'http://news.ltn.com.tw/news/politics/breakingnews/998126'
|
11
|
+
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'liberty_times_news_s1.html'))
|
12
|
+
article = described_class.new(url).parse
|
13
|
+
article[:title].should == '義光禁食》林義雄宣布停止禁食 願再為台奮鬥'
|
14
|
+
article[:content].should include('在今年的七合一選舉和來年的立委、總統選舉時,要求候選人承諾促成非核家園。')
|
15
|
+
article[:company_name].should == '自由時報'
|
16
|
+
article[:reporter_name].should == '李欣芳'
|
17
|
+
article[:published_at].should == Time.new(2014,4,30,14,49)
|
18
|
+
end
|
19
|
+
it do
|
20
|
+
url = 'http://news.ltn.com.tw/news/world/breakingnews/997893'
|
21
|
+
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'liberty_times_news_s2.html'))
|
22
|
+
article = described_class.new(url).parse
|
23
|
+
article[:title].should == '震驚!中國勞改犯求救信藏百貨公司紙袋'
|
24
|
+
article[:content].should include('紐約知名的薩克斯百貨公司')
|
25
|
+
article[:company_name].should == '自由時報'
|
26
|
+
article[:reporter_name].should == nil
|
27
|
+
article[:published_at].should == Time.new(2014,4,30,10,57)
|
28
|
+
end
|
29
|
+
|
30
|
+
it do
|
31
|
+
url = 'http://news.ltn.com.tw/news/society/breakingnews/829851'
|
32
|
+
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'liberty_times_news_s3.html'))
|
33
|
+
article = described_class.new(url).parse
|
34
|
+
article[:title].should == '又傳酒駕釀禍 少婦被撞陷昏迷'
|
35
|
+
article[:content].should include('又傳酒駕釀禍!花蓮縣壽豐鄉一名男子昨天(28日)在友人家喝得爛醉')
|
36
|
+
article[:company_name].should == '自由時報'
|
37
|
+
article[:reporter_name].should == nil
|
38
|
+
article[:published_at].should == Time.new(2013,6,29,17,52)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe '#parse_url_id' do
|
43
|
+
it do
|
44
|
+
url = 'http://news.ltn.com.tw/news/politics/breakingnews/998126'
|
45
|
+
described_class.parse_url_id(url).should == '998126'
|
46
|
+
|
47
|
+
url = 'http://news.ltn.com.tw/news/world/breakingnews/997893'
|
48
|
+
described_class.parse_url_id(url).should == '997893'
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
@@ -0,0 +1,116 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>馮光遠:郝因「劫機」被打成秀斗搞獨裁 - 反核全民總動員 - 自由電子報</title>
|
7
|
+
<meta property="og:title" content="馮光遠:郝因「劫機」被打成秀斗搞獨裁 - 反核全民總動員 - 自由電子報" />
|
8
|
+
<meta name="description" content="反核全民總動員 - 自由電子報" />
|
9
|
+
<link rel="image_src" type="image/jpeg" href="http://iservice.ltn.com.tw/2014/specials/nonukes/images/200x200.gif" />
|
10
|
+
<meta property="og:image" content="http://iservice.ltn.com.tw/2014/specials/nonukes/images/200x200.gif" />
|
11
|
+
<link rel="image_src" type="image/jpeg" href="../../../Upload/liveNews/phpyUuaqZ.jpg" />
|
12
|
+
<meta property="og:image" content="../../../Upload/liveNews/phpyUuaqZ.jpg" />
|
13
|
+
<link rel="image_src" type="image/jpeg" href="../../../Upload/liveNews/phpaTwXqK.jpg" />
|
14
|
+
<meta property="og:image" content="../../../Upload/liveNews/phpaTwXqK.jpg" />
|
15
|
+
<link rel="stylesheet" href="/liveNews/liveNews3.css">
|
16
|
+
<link rel="stylesheet" href="style.css">
|
17
|
+
<script type="text/javascript" src="/Js/jquery/jquery-1.3.2.min.js"></script>
|
18
|
+
<script type="text/javascript" src="/Js/adopen.js"></script>
|
19
|
+
<script type="text/javascript" src="/Js/ga/UA27.js"></script>
|
20
|
+
<meta property="fb:app_id" content="140490219413038">
|
21
|
+
|
22
|
+
</head>
|
23
|
+
<body>
|
24
|
+
<div class="main">
|
25
|
+
<!-- Start Alexa -->
|
26
|
+
<script type="text/javascript">
|
27
|
+
_atrk_opts = { atrk_acct:"LS4hj1a8Dy002+", domain:"ltn.com.tw",dynamic: true};
|
28
|
+
(function() { var as = document.createElement('script'); as.type = 'text/javascript'; as.async = true; as.src = "https://d31qbv1cthcecs.cloudfront.net/atrk.js"; var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(as, s); })();
|
29
|
+
</script>
|
30
|
+
<noscript><img src="https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=LS4hj1a8Dy002+" style="display:none" height="1" width="1" alt="" /></noscript>
|
31
|
+
<!-- End Alexa -->
|
32
|
+
<div id="header"><a href="http://www.ltn.com.tw/"><img id="logo01" src="/images/logo.jpg" border="0"></a>
|
33
|
+
<div id="nav">
|
34
|
+
<a href="http://www.ltn.com.tw" target="_blank">自由電子報</a> |
|
35
|
+
<a href="http://auto.ltn.com.tw/" target="_blank">汽車頻道</a> |
|
36
|
+
<a href="http://video.ltn.com.tw/" target="_blank">影音娛樂</a> |
|
37
|
+
<a href="http://3c.ltn.com.tw/3c/" target="_blank">3C 科技</a> |
|
38
|
+
<a href="http://blog.ltn.com.tw/" target="_blank">自由部落</a>
|
39
|
+
</div>
|
40
|
+
<div class="ad"><script src="http://www.ltn.com.tw/js/ajs/BindexIA01.js"></script></div>
|
41
|
+
<hr>
|
42
|
+
</div>
|
43
|
+
<div id="news_block" class="brown">
|
44
|
+
<div class="newsTb_special2">
|
45
|
+
<div id="project_logo2"><a href="./"><img src="images/logo.jpg" alt="反核全民總動員" /></a></div>
|
46
|
+
<a name="navi"></a>
|
47
|
+
<div id="nav_border">
|
48
|
+
<ul id="nav_main">
|
49
|
+
<li><a href="./">首頁</a></li>
|
50
|
+
<li><a href="list.php?rno=3">義光禁食</a></li>
|
51
|
+
<li><a href="list.php?rno=1"class="LL">遍地烽火</a></li>
|
52
|
+
<li><a href="album.php">新聞圖輯</a></li>
|
53
|
+
</ul>
|
54
|
+
</div>
|
55
|
+
<script src="/Js/share.js"></script>
|
56
|
+
<div class="content">
|
57
|
+
|
58
|
+
|
59
|
+
<h1>馮光遠:郝因「劫機」被打成秀斗搞獨裁 <span class="date">2014-04-30 23:54</span></h1>
|
60
|
+
<div class="ad_undertit" id="IB4"><script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIB04.js"></script></div>
|
61
|
+
<div class="share1"><script>goShare();</script></div>
|
62
|
+
<div class="allpic picl">
|
63
|
+
<div class="pic">
|
64
|
+
<a href="pic.php?no=1&ano=998521&type=l"><img src="../../../Upload/liveNews/phpyUuaqZ.jpg" alt="照片"></a>
|
65
|
+
<span>台北市長郝龍斌(中)在處理近期民眾抗爭手段上,有越趨強硬的趨勢外,更以「劫機說」批評抗爭民眾。(資料照,記者溫于德攝)</span>
|
66
|
+
</div>
|
67
|
+
<div class="pic">
|
68
|
+
<a href="pic.php?no=2&ano=998521&type=l"><img src="../../../Upload/liveNews/phpaTwXqK.jpg" alt="照片"></a>
|
69
|
+
<span>馮光遠嘲諷台北市長郝龍斌,在2006年參與紅衫軍抗爭時被打成秀斗,才會在當上市長後以「劫機」比喻民眾抗爭事件,甚至以強硬手段驅離民眾。(圖擷取自馮光遠臉書)</span>
|
70
|
+
</div>
|
71
|
+
</div>
|
72
|
+
<p>
|
73
|
+
〔本報訊〕台北市長參選人馮光遠今天再度開砲,仿效PTT鄉民「作夢」的方式,敘述曾經參與2006年紅衫軍抗爭運動,與民眾一起佔領街道的台北市長郝龍斌,可能當時被鎮暴警察敲壞頭腦,才會在後來當上台北市長以後以「劫機」比喻反核抗爭民眾,讓郝龍斌「從一個還有一點點民主意識的人,變成獨裁者的追隨者、模仿者。」</p><p>馮光遠表示打盹的時候,腦海中浮現「2006年的那一天,我看到市民郝龍斌參與了劫機事件。後來,台北市長馬英九動用警力及水柱,將一群劫機犯驅離。那也是台灣近年來罕見的一場暴力驅離行動,由馬英九全權主導。」</p><p>後來馬英九表示「還路於民、清場有理」,但當時民眾皆表示警察驅離時,警棍如雨下非常殘暴,而且還都往民眾的頭部攻擊。</p><p>馮光遠因此諷刺:「市民郝龍斌的腦袋,就是那天被打成秀斗的,從此,他從一個還有一點點民主意識的人,變成獨裁者的追隨者、模仿者。」也因此後來當選台北市長後,郝龍斌才會「依樣畫葫蘆,也主導多起暴力驅離事件,且樂此不疲。」</p><p>馮光遠補充,郝龍斌後來因為驅離績效卓著,因此「榮升」國民黨副主席。</p>
|
74
|
+
|
75
|
+
<div class="share2"><script>goShare();</script></div>
|
76
|
+
<UL class="n_list">
|
77
|
+
<DIV class="newslist_tit">看其他文章</DIV>
|
78
|
+
<li><a href="news.php?rno=1&type=l&no=998369" class="red">6歲童:希望政府跟在警察後面聽我們的聲音</a></li>
|
79
|
+
<li><a href="news.php?rno=1&type=l&no=998387" class="red">貼郝參加紅衫軍照片 王定宇:找到劫機犯了!</a></li>
|
80
|
+
<li><a href="news.php?rno=1&type=l&no=998455" class="red">廢核團體凱道打包 明早記者會譴責國家暴力</a></li>
|
81
|
+
<li><a href="news.php?rno=1&type=l&no=998424" class="red">警動員護立委 議員批罔顧用路人權益</a></li>
|
82
|
+
</ul>
|
83
|
+
|
84
|
+
</div><div class="top"><a href="#"><image src="images/top_button.gif"></a></div>
|
85
|
+
</div>
|
86
|
+
<dl id="service">
|
87
|
+
<dt><a target="_blank" href="/special/project/">更多專題<img align="absmiddle" alt="" src="http://www.ltn.com.tw/images/pic/finger.gif"></a></dt>
|
88
|
+
<dd>
|
89
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP01.js" type="text/javascript"></script>
|
90
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP02.js" type="text/javascript"></script>
|
91
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP03.js" type="text/javascript"></script>
|
92
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP04.js" type="text/javascript"></script>
|
93
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP05.js" type="text/javascript"></script>
|
94
|
+
</dd>
|
95
|
+
</dl>
|
96
|
+
<script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIB02.js"></script>
|
97
|
+
</div><!-- end news_block -->
|
98
|
+
|
99
|
+
<div id="adc">
|
100
|
+
<div id="IC1"><script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIC01.js"></script></div>
|
101
|
+
<div class="box9c"><a href="http://news.ltn.com.tw/list/BreakingNews" class="text_9">即時新聞</a><ul><li><a href="http://www.libertytimes.com.tw/2014/new/may/1/today-t1.htm?Slots=Sps" target="ltnLn">林義雄停止禁食:感謝台灣人</a></li><li><a href="http://news.ltn.com.tw/news/politics/breakingnews/998609?Slots=Sps" target="ltnLn">臉書強迫改名 王炳忠大呼莫名其妙</a></li><li><a href="http://news.ltn.com.tw/news/society/breakingnews/998601?Slots=Sps" target="ltnLn">支援學運警中風 45歲柯雄飛今殉職</a></li><li><a href="http://news.ltn.com.tw/news/politics/breakingnews/998605?Slots=Sps" target="ltnLn">社運衝擊GDP? 管中閔:還要觀望</a></li><li><a href="http://news.ltn.com.tw/news/entertainment/breakingnews/998593?Slots=Sps" target="ltnLn">遭好友抹黑成心機女 張鈞甯自爆識人不清</a></li></ul></div><script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIC02.js"></script>
|
102
|
+
<div class="box9c"><a href="http://news.ltn.com.tw/list/BreakingNews" class="text_9">熱門新聞</a><ul><li><a href="http://news.ltn.com.tw/news/life/breakingnews/998591?Slots=Sps" target="ltnLn">2013悲慘國家排名 台灣上榜</a></li><li><a href="http://news.ltn.com.tw/news/life/breakingnews/998555?Slots=Sps" target="ltnLn">臉書推匿名登入APP</a></li><li><a href="http://news.ltn.com.tw/news/politics/breakingnews/998563?Slots=Sps" target="ltnLn">基層員警也挺抗爭 網友感動推爆自白文</a></li><li><a href="http://news.ltn.com.tw/news/life/breakingnews/998623?Slots=Sps" target="ltnLn">51搶頭香! 桃園總工會勞動部陳情</a></li><li><a href="http://news.ltn.com.tw/news/politics/breakingnews/998609?Slots=Sps" target="ltnLn">臉書強迫改名 王炳忠大呼莫名其妙</a></li></ul></div><div id="IC4"><script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIC04.js"></script></div>
|
103
|
+
|
104
|
+
</div>
|
105
|
+
|
106
|
+
|
107
|
+
<div id="footer">
|
108
|
+
<a href="http://opinion.ltn.com.tw/inform/complain_1.php?type=3" target="_blank">聯絡我們</a> | 自由電子報 版權所有 © 2014 The Liberty Times. All Rights Reserved.
|
109
|
+
</div>
|
110
|
+
|
111
|
+
|
112
|
+
</div>
|
113
|
+
</body>
|
114
|
+
</html>
|
115
|
+
|
116
|
+
<!-- 103236 -->
|
@@ -0,0 +1,110 @@
|
|
1
|
+
|
2
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>林義雄宣布停止禁食 願再為台奮鬥 - 反核全民總動員 - 自由電子報</title>
|
7
|
+
<meta property="og:title" content="林義雄宣布停止禁食 願再為台奮鬥 - 反核全民總動員 - 自由電子報" />
|
8
|
+
<meta name="description" content="反核全民總動員 - 自由電子報" />
|
9
|
+
<link rel="image_src" type="image/jpeg" href="http://iservice.ltn.com.tw/2014/specials/nonukes/images/200x200.gif" />
|
10
|
+
<meta property="og:image" content="http://iservice.ltn.com.tw/2014/specials/nonukes/images/200x200.gif" />
|
11
|
+
<link rel="image_src" type="image/jpeg" href="../../../Upload/liveNews/php2OVO8J.jpeg" />
|
12
|
+
<meta property="og:image" content="../../../Upload/liveNews/php2OVO8J.jpeg" />
|
13
|
+
<link rel="stylesheet" href="/liveNews/liveNews3.css">
|
14
|
+
<link rel="stylesheet" href="style.css">
|
15
|
+
<script type="text/javascript" src="/Js/jquery/jquery-1.3.2.min.js"></script>
|
16
|
+
<script type="text/javascript" src="/Js/adopen.js"></script>
|
17
|
+
<script type="text/javascript" src="/Js/ga/UA27.js"></script>
|
18
|
+
<meta property="fb:app_id" content="140490219413038">
|
19
|
+
|
20
|
+
</head>
|
21
|
+
<body>
|
22
|
+
<div class="main">
|
23
|
+
<!-- Start Alexa -->
|
24
|
+
<script type="text/javascript">
|
25
|
+
_atrk_opts = { atrk_acct:"LS4hj1a8Dy002+", domain:"ltn.com.tw",dynamic: true};
|
26
|
+
(function() { var as = document.createElement('script'); as.type = 'text/javascript'; as.async = true; as.src = "https://d31qbv1cthcecs.cloudfront.net/atrk.js"; var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(as, s); })();
|
27
|
+
</script>
|
28
|
+
<noscript><img src="https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=LS4hj1a8Dy002+" style="display:none" height="1" width="1" alt="" /></noscript>
|
29
|
+
<!-- End Alexa -->
|
30
|
+
<div id="header"><a href="http://www.ltn.com.tw/"><img id="logo01" src="/images/logo.jpg" border="0"></a>
|
31
|
+
<div id="nav">
|
32
|
+
<a href="http://www.ltn.com.tw" target="_blank">自由電子報</a> |
|
33
|
+
<a href="http://auto.ltn.com.tw/" target="_blank">汽車頻道</a> |
|
34
|
+
<a href="http://video.ltn.com.tw/" target="_blank">影音娛樂</a> |
|
35
|
+
<a href="http://3c.ltn.com.tw/3c/" target="_blank">3C 科技</a> |
|
36
|
+
<a href="http://blog.ltn.com.tw/" target="_blank">自由部落</a>
|
37
|
+
</div>
|
38
|
+
<div class="ad"><script src="http://www.ltn.com.tw/js/ajs/BindexIA01.js"></script></div>
|
39
|
+
<hr>
|
40
|
+
</div>
|
41
|
+
<div id="news_block" class="brown">
|
42
|
+
<div class="newsTb_special2">
|
43
|
+
<div id="project_logo2"><a href="./"><img src="images/logo.jpg" alt="反核全民總動員" /></a></div>
|
44
|
+
<a name="navi"></a>
|
45
|
+
<div id="nav_border">
|
46
|
+
<ul id="nav_main">
|
47
|
+
<li><a href="./">首頁</a></li>
|
48
|
+
<li><a href="list.php?rno=3"class="LL">義光禁食</a></li>
|
49
|
+
<li><a href="list.php?rno=1">遍地烽火</a></li>
|
50
|
+
<li><a href="album.php">新聞圖輯</a></li>
|
51
|
+
</ul>
|
52
|
+
</div>
|
53
|
+
<script src="/Js/share.js"></script>
|
54
|
+
<div class="content">
|
55
|
+
|
56
|
+
|
57
|
+
<h1>林義雄宣布停止禁食 願再為台奮鬥 <span class="date">2014-04-30 14:49</span></h1>
|
58
|
+
<div class="ad_undertit" id="IB4"><script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIB04.js"></script></div>
|
59
|
+
<div class="share1"><script>goShare();</script></div>
|
60
|
+
<div class="allpic picl">
|
61
|
+
<div class="pic">
|
62
|
+
<a href="pic.php?no=1&ano=998126&type=l"><img src="../../../Upload/liveNews/php2OVO8J.jpeg" alt="照片"></a>
|
63
|
+
<span>前民進黨主席林義雄宣布停止禁食,並透過網站發表「感謝你!台灣人!──為停止禁食敬告親友」的公開信。(記者方賓照攝)</span>
|
64
|
+
</div>
|
65
|
+
</div>
|
66
|
+
<p>
|
67
|
+
〔記者李欣芳/台北報導〕最新消息!前民進黨主席林義雄宣布停止禁食,他下午透過網站發表「感謝你!台灣人!──為停止禁食敬告親友」的公開信強調, 他對於當今的掌權者本無任何期待,因此不屑對掌權者有任何請求,所以禁食的目的是在「懇請台灣人民以積極有力的方法」展現力量。半個月來,台灣人民的優異表現,已屬空前未有,實在使人感動和激賞,更使他深深感激。</p><p> 林義雄說,為了回應台灣人民的真摯關愛,「義雄決定停止禁食,並誓願以餘生與台灣人民共同盡力維護台灣的民主和主權,並在其再現危機時,奉獻一切,與所有台灣人民共同奮鬥」。</p><p> 林義雄指出,核四既已決定停工,只要不再復工,那麼「停建核四」已不是議題,反核人士大可進一步致力於核一、二、三廠的準時除役;熱愛台灣的廣大人民更應專注於台灣民主及主權的維護。</p><p> 他表示,近期中,大家可以努力做好以下二件事。第一,用心花時間和精神,鍛鍊自己的抗爭能力。與有心捍衛台灣民主和主權的人民積極互動,一起砥礪心志、切磋抗爭方法、培養互信與感情,俾具備更強的能力,來做更有效的抗爭行動。</p><p> 其次,林義雄說,以下列活動,實地鍛鍊抗爭能力:包括要求立法院補正「公民投票法」:包括提案連署門檻過高、投票結果計算不合理、審議委員會的設置等等; 阻止立法院通過「自由經濟示範區特別條例」;召開全國「公民憲政會議」,推動修憲; 在今年的七合一選舉和來年的立委、總統選舉時,要求候選人承諾促成非核家園。</p>
|
68
|
+
|
69
|
+
<div class="share2"><script>goShare();</script></div>
|
70
|
+
<UL class="n_list">
|
71
|
+
<DIV class="newslist_tit">看其他文章</DIV>
|
72
|
+
<li><a href="news.php?rno=3&type=a&no=774974" class="red">林義雄支援小組籲非武力抗爭</a></li>
|
73
|
+
<li><a href="news.php?rno=3&type=l&no=997840" class="red">週刊報導林義雄以口進食 台大未證實</a></li>
|
74
|
+
<li><a href="news.php?rno=3&type=l&no=998160" class="red">光禁食》林義雄停止禁食 蘇貞昌感佩</a></li>
|
75
|
+
<li><a href="news.php?rno=3&type=l&no=998191" class="red">光禁食》林義雄停止絕食 王丹:天佑台灣!</a></li>
|
76
|
+
</ul>
|
77
|
+
|
78
|
+
</div><div class="top"><a href="#"><image src="images/top_button.gif"></a></div>
|
79
|
+
</div>
|
80
|
+
<dl id="service">
|
81
|
+
<dt><a target="_blank" href="/special/project/">更多專題<img align="absmiddle" alt="" src="http://www.ltn.com.tw/images/pic/finger.gif"></a></dt>
|
82
|
+
<dd>
|
83
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP01.js" type="text/javascript"></script>
|
84
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP02.js" type="text/javascript"></script>
|
85
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP03.js" type="text/javascript"></script>
|
86
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP04.js" type="text/javascript"></script>
|
87
|
+
<script src="http://www.ltn.com.tw/js/ajs/BindexP05.js" type="text/javascript"></script>
|
88
|
+
</dd>
|
89
|
+
</dl>
|
90
|
+
<script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIB02.js"></script>
|
91
|
+
</div><!-- end news_block -->
|
92
|
+
|
93
|
+
<div id="adc">
|
94
|
+
<div id="IC1"><script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIC01.js"></script></div>
|
95
|
+
<div class="box9c"><a href="http://news.ltn.com.tw/list/BreakingNews" class="text_9">即時新聞</a><ul><li><a href="http://news.ltn.com.tw/news/society/breakingnews/998602?Slots=Sps" target="ltnLn">「反低薪、禁派遣」大遊行 今萬人上街</a></li><li><a href="http://iservice.ltn.com.tw/liveNews/news.php?no=998634&type=%E6%94%BF%E6%B2%BB&Slots=Sps" target="ltnLn">黃世銘洩密上訴 高等法院上午分案</a></li><li><a href="http://news.ltn.com.tw/news/politics/breakingnews/998609?Slots=Sps" target="ltnLn">臉書強迫改名 王炳忠大呼莫名其妙</a></li><li><a href="http://news.ltn.com.tw/news/society/breakingnews/998601?Slots=Sps" target="ltnLn">支援學運警中風 45歲柯雄飛今殉職</a></li><li><a href="http://news.ltn.com.tw/news/politics/breakingnews/998605?Slots=Sps" target="ltnLn">社運衝擊GDP? 管中閔:還要觀望</a></li></ul></div><script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIC02.js"></script>
|
96
|
+
<div class="box9c"><a href="http://news.ltn.com.tw/list/BreakingNews" class="text_9">熱門新聞</a><ul><li><a href="http://news.ltn.com.tw/news/entertainment/breakingnews/998593?Slots=Sps" target="ltnLn">遭好友抹黑成心機女 張鈞甯自爆識人不清</a></li><li><a href="http://news.ltn.com.tw/news/life/breakingnews/998591?Slots=Sps" target="ltnLn">2013悲慘國家排名 台灣上榜</a></li><li><a href="http://news.ltn.com.tw/news/life/breakingnews/998555?Slots=Sps" target="ltnLn">臉書推匿名登入APP</a></li><li><a href="http://news.ltn.com.tw/news/sports/breakingnews/998642?Slots=Sps" target="ltnLn">NBA》豪哥強勢反彈 上半場10分率火箭領先</a></li><li><a href="http://news.ltn.com.tw/news/politics/breakingnews/998617?Slots=Sps" target="ltnLn">抗議頻頻惹民怨 王丹諷:看到共產黨的臉</a></li></ul></div><div id="IC4"><script type="text/javascript" src="http://www.ltn.com.tw/js/ajs/BindexIC04.js"></script></div>
|
97
|
+
|
98
|
+
</div>
|
99
|
+
|
100
|
+
|
101
|
+
<div id="footer">
|
102
|
+
<a href="http://opinion.ltn.com.tw/inform/complain_1.php?type=3" target="_blank">聯絡我們</a> | 自由電子報 版權所有 © 2014 The Liberty Times. All Rights Reserved.
|
103
|
+
</div>
|
104
|
+
|
105
|
+
|
106
|
+
</div>
|
107
|
+
</body>
|
108
|
+
</html>
|
109
|
+
|
110
|
+
<!-- 110628 -->
|
@@ -6,14 +6,24 @@ describe TaiwaneseNewsParser::Parser::LibertyTimes do
|
|
6
6
|
Timecop.freeze(Time.local(2013,6,29,9,13))
|
7
7
|
end
|
8
8
|
it do
|
9
|
-
url = 'http://iservice.
|
10
|
-
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'
|
9
|
+
url = 'http://iservice.ltn.com.tw/2014/specials/nonukes/news.php?rno=1&no=998521&type=l'
|
10
|
+
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'liberty_times_s2.html'))
|
11
11
|
article = described_class.new(url).parse
|
12
|
-
article[:title].should == '
|
13
|
-
article[:content].should include('
|
12
|
+
article[:title].should == '馮光遠:郝因「劫機」被打成秀斗搞獨裁'
|
13
|
+
article[:content].should include('馮光遠補充,郝龍斌後來因為驅離績效卓著,因此「榮升」國民黨副主席。')
|
14
14
|
article[:company_name].should == '自由時報'
|
15
15
|
article[:reporter_name].should == nil
|
16
|
-
article[:published_at].should == Time.new(
|
16
|
+
article[:published_at].should == Time.new(2014,4,30,23,54)
|
17
|
+
end
|
18
|
+
it do
|
19
|
+
url = 'http://iservice.ltn.com.tw/2014/specials/nonukes/news.php?rno=1&no=998521&type=l'
|
20
|
+
FakeWeb.register_uri(:get, url, body:sample(__FILE__,'liberty_times_s3.html'))
|
21
|
+
article = described_class.new(url).parse
|
22
|
+
article[:title].should == '林義雄宣布停止禁食 願再為台奮鬥'
|
23
|
+
article[:content].should include('林義雄說,為了回應台灣人民的真摯關愛')
|
24
|
+
article[:company_name].should == '自由時報'
|
25
|
+
article[:reporter_name].should == '李欣芳'
|
26
|
+
article[:published_at].should == Time.new(2014,4,30,14,49)
|
17
27
|
end
|
18
28
|
end
|
19
29
|
|
@@ -0,0 +1,2250 @@
|
|
1
|
+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=big5">
|
5
|
+
<title>�n��style ���رi�x�d�p�ʧ@ | ���t�ȹB | �B�ʤj�p�� | �p�X�s�D��</title>
|
6
|
+
|
7
|
+
|
8
|
+
<meta name="description" content="���t�ȹB�~�����}�ɨ�ѡA�n��������즳�N�L�N���p�ʧ@�A�w�g�S�o�U����M�N���Ϋ��n���D�C���~����ɥu�n�b�n���X�ɡA�ꤺ���M�нm�γ����D���ǷQ���쪺�u�N�~�v�A���~���t�ȹB�h����رi�x���j����}�C" />
|
9
|
+
<meta property="og:description" content="���t�ȹB�~�����}�ɨ�ѡA�n��������즳�N�L�N���p�ʧ@�A�w�g�S�o�U����M�N���Ϋ��n���D�C���~����ɥu�n�b�n���X�ɡA�ꤺ���M�нm�γ����D���ǷQ���쪺�u�N�~�v�A���~���t�ȹB�h����رi�x���j����}�C" />
|
10
|
+
<meta name="keywords" content="�n��style ���رi�x�d�p�ʧ@ , ���t�ȹB , �B�ʤj�p�� , �p�X�s�D��" />
|
11
|
+
<meta name="keywords" content="�B�ʡB�βy�B�x�y�B�����ҡB���y�B�S�y�B���B�B�ȹB�B�@�ɪM�B�Ȭw�M�BF1�ɨ��B���y�B�������y�B�Ю|�B��y�B���y�BMLB�B����¾�ΡBNBA�BSBL�BHBL�B���إ��B���l�ӡB���A���B�J���s�B�v��B�ì��v��B�D�_�B�����F�D�_�B�B�ʱm��B�B�m"><link rel="alternate" type="application/rss+xml" title="�̷s����" href="http://udn.com/udnrss/latest.xml">
|
12
|
+
<link rel="alternate" type="application/rss+xml" title="UDN�B�ʤj�p��" href="http://mag.udn.com/udnrss/sports_rss.xml">
|
13
|
+
|
14
|
+
|
15
|
+
<link rel="alternate" type="text/xml+oembed" href="http://udn.com/esrv/oembed.php?url=http%3A%2F%2Fforum.udn.com%2Fforum%2FNewsLetter%2FNewsPreview%3FEncode%3Dbig5%26NewsID%3D8950901&format=xml" title="udn oEmbed Profile" />
|
16
|
+
<link rel="alternate" type="application/json+oembed" href="http://udn.com/esrv/oembed.php?url=http%3A%2F%2Fforum.udn.com%2Fforum%2FNewsLetter%2FNewsPreview%3FEncode%3Dbig5%26NewsID%3D8950901&format=json" title="udn oEmbed Profile" />
|
17
|
+
<meta property="og:title" content="�n��style ���رi�x�d�p�ʧ@ | ���t�ȹB | �B�ʤj�p�� | �p�X�s�D��"/>
|
18
|
+
<meta property="og:type" content="article" />
|
19
|
+
<meta property="og:image" content="http://udn.com/NEWS/MEDIA/8950901-3554415.jpg"/>
|
20
|
+
<meta property="og:url" content="http://udn.com/NEWS/SPORTS/SPO6/8950901.shtml"/>
|
21
|
+
|
22
|
+
<meta property="fb:app_id" content="331022766910211" />
|
23
|
+
<meta property="fb:admins" content="100002847892748,100002851642807"/>
|
24
|
+
|
25
|
+
<!--
|
26
|
+
-->
|
27
|
+
<!--meta spo-->
|
28
|
+
<link href="http://s.udn.com.tw/2010/css/css.css" rel="stylesheet" type="text/css">
|
29
|
+
<link href="http://s.udn.com.tw/2010/css/news-sports-css.css" rel="stylesheet" type="text/css">
|
30
|
+
<link href="http://s.udn.com.tw/2010/css/all.css" rel="stylesheet" type="text/css">
|
31
|
+
<script language="JavaScript" src="http://s.udn.com.tw/2010/js/jquery-1.4.2.min.js" type="text/javascript"></script>
|
32
|
+
<script language="JavaScript" src="http://s.udn.com.tw/2010/js/jquery.tools.min.js" type="text/javascript"></script>
|
33
|
+
<SCRIPT language=JavaScript SRC="http://s.udn.com.tw/NEWS/js/redraw.js"></SCRIPT>
|
34
|
+
<SCRIPT language=JavaScript SRC="http://s.udn.com.tw/NEWS/js/premenu.js?s"></SCRIPT>
|
35
|
+
<script>
|
36
|
+
function rId() {
|
37
|
+
var url0=window.location.toString();
|
38
|
+
var ary0 = url0.split("?");
|
39
|
+
var url = ary0[0];
|
40
|
+
var ary=url.split("/")
|
41
|
+
var page=ary[ary.length-1];
|
42
|
+
if (page.indexOf("_") != -1) {
|
43
|
+
_ary=page.split("_");
|
44
|
+
var DigId=_ary[0];
|
45
|
+
//for seo
|
46
|
+
if ( DigId.indexOf("-") > 0 ) {
|
47
|
+
var aaas = DigId.match(/(.*)-(\d*)$/);
|
48
|
+
DigId = aaas[2];
|
49
|
+
}
|
50
|
+
}
|
51
|
+
else {
|
52
|
+
var ary2=page.split(".");
|
53
|
+
var DigId=ary2[ary2.length-2];
|
54
|
+
// var DigId=ary2[0];
|
55
|
+
if ( DigId.indexOf("-") > 0 ) {
|
56
|
+
var aaas = DigId.match(/(.*)-(\d*)$/);
|
57
|
+
DigId = aaas[2];
|
58
|
+
}
|
59
|
+
}
|
60
|
+
|
61
|
+
return DigId;
|
62
|
+
}
|
63
|
+
function GetCkValue( name ) {
|
64
|
+
var dc=document.cookie;
|
65
|
+
var prefix=name+"=";
|
66
|
+
var begin=dc.indexOf("; "+prefix);
|
67
|
+
if(begin==-1) begin=dc.indexOf(prefix);
|
68
|
+
else begin+=2;
|
69
|
+
if(begin==-1) return "";
|
70
|
+
var end=document.cookie.indexOf(";",begin);
|
71
|
+
if(end==-1) end=dc.length;
|
72
|
+
return dc.substring(begin+prefix.length,end);
|
73
|
+
}
|
74
|
+
</script>
|
75
|
+
|
76
|
+
|
77
|
+
<!--ETU-->
|
78
|
+
<script type="text/javascript">
|
79
|
+
var strTables = '<div class="Pdtbox"><ul>';
|
80
|
+
//var titlebar0='<div style="margin-top:30px;margin-bottom:6px;text-align:center" ><span class="right_category"><b>�z�i��|�����쪺�峹</b></span></div>';
|
81
|
+
//var titlebar1='<div style="background-color:#126cb1 ;width:550px;height:6px;margin-bottom:10px"></div>';
|
82
|
+
var titlebar0='<div align="center" style="color: rgb(255, 255, 255); line-height: 22px; font-size: 15px; font-weight: bold; margin-top: 8px; margin-bottom: 5px; background-image: url(http://mag.udn.com/magimages/list_bg.gif);"> �z�i��|�����쪺�峹 </div>';
|
83
|
+
var titlebar1='';
|
84
|
+
function setdata(data){
|
85
|
+
jQuery("<div/>").attr('id',"etucontent").append(titlebar0+titlebar1).append(strTables).appendTo(jQuery("body")).hide();
|
86
|
+
jQuery(".Pdtbox ul").css("width","550px");
|
87
|
+
jQuery(".Pdtbox ul").css("height","110px");
|
88
|
+
writeinto();
|
89
|
+
}
|
90
|
+
|
91
|
+
function writeinto(){
|
92
|
+
var obj=jQuery("#etucontent");
|
93
|
+
var myVar='writeinto()';
|
94
|
+
if ( jQuery("#storyetu").length > 0 ) {
|
95
|
+
// if ( console ) console.log("L13:case1");
|
96
|
+
//alert("L13:case1");
|
97
|
+
//fix pic too heigh problem
|
98
|
+
jQuery(".story").css("overflow","hidden");
|
99
|
+
//jQuery( obj ).appendTo(jQuery(".relate_article") );
|
100
|
+
jQuery( obj ).appendTo(jQuery("#storyetu") );
|
101
|
+
jQuery( obj ).show();
|
102
|
+
}else {
|
103
|
+
// if ( console ) console.log("L28:case2");
|
104
|
+
//alert("L28:case2");
|
105
|
+
setTimeout( myVar , 5000); //
|
106
|
+
clearTimeout(myVar);
|
107
|
+
}
|
108
|
+
|
109
|
+
}
|
110
|
+
|
111
|
+
function getProds(prods){
|
112
|
+
jQuery.ajax({
|
113
|
+
type: 'post',
|
114
|
+
url: '/esrv/etu_mixX.php',
|
115
|
+
data: 'dc_prods_0='+prods+'&type=mag',
|
116
|
+
dataType: 'json',
|
117
|
+
cache: 'false',
|
118
|
+
success: function(data) {
|
119
|
+
//alert ("L37 :"+data.length);
|
120
|
+
kdid='DS04';
|
121
|
+
var h=0;
|
122
|
+
var rc=0;
|
123
|
+
if (data.length > 0 ){
|
124
|
+
h=h+20;
|
125
|
+
// var prodLink = 'http://mag.udn.com/mag/<%=PROJ_PATH%>/storypage.jsp?C=etu&f_ART_ID=';
|
126
|
+
for (var i=0; i<data.length && i < data.length ; i=i+2 ){
|
127
|
+
if ( rc > 9 ) break;
|
128
|
+
/* strTables= strTables + '<li>'+
|
129
|
+
'<a href="'+prodLink + data[i].Fxuid + '&kdid='+kdid+'&eturec=1" >'+
|
130
|
+
data[i].TITLE.substr(0,20)+
|
131
|
+
'</a>'+
|
132
|
+
'</li>';*/
|
133
|
+
|
134
|
+
if ( typeof (data[i].CURL) !== "undefined" && data[i].CURL.indexOf('?') < 0 ) {
|
135
|
+
data[i].CURL=data[i].CURL+"?s=1";
|
136
|
+
}else if ( typeof (data[i].CURL) === "undefined"){
|
137
|
+
//alert ("L71pass");
|
138
|
+
continue;
|
139
|
+
}else { }
|
140
|
+
j=i+1;
|
141
|
+
if ( j > data.length ) { break; }
|
142
|
+
if ( typeof (data[j]) === "undefined" ) { continue; }
|
143
|
+
//alert ( j + data[j].CURL );
|
144
|
+
if ( typeof (data[j].CURL) !== "undefined" && data[j].CURL.indexOf('?') < 0 ) {
|
145
|
+
data[j].CURL=data[j].CURL+"?s=1";
|
146
|
+
}else if ( typeof (data[j].CURL) === "undefined" ) {
|
147
|
+
//alert ("L80");
|
148
|
+
continue;
|
149
|
+
}else { }
|
150
|
+
rc=rc+2;
|
151
|
+
strTables= strTables +'<div style="height:24px"><div style="line-height:22px;width:15px;float:left"><span class="story_reference_topic">�E</span></div><div style="height:24px;line-height:22px;font-size:16px;width:260px;float:left" ><a href="'+data[i].CURL+ '&kdid='+kdid+'&eturec=1'+'" class="story_category">'+data[i].TITLE.substr(0,20)+'</a></div>'+
|
152
|
+
'<div style="line-height:22px;width:15px;float:left"><span class="story_reference_topic">�E</span></div><div style="height:24px;line-height:22px;font-size:16px;width:260px;float:left" ><a href="'+data[i+1].CURL+ '&kdid='+kdid+'&eturec=1'+'" class="story_category">'+data[i+1].TITLE.substr(0,20)+'</a></div></div>';
|
153
|
+
}
|
154
|
+
strTables = strTables +
|
155
|
+
'</ul></div>';
|
156
|
+
}else{
|
157
|
+
|
158
|
+
}
|
159
|
+
// alert ("L77:"+strTables);
|
160
|
+
if (rc >= 6) setdata(strTables);
|
161
|
+
return;
|
162
|
+
},
|
163
|
+
error: function(xhr, ajaxOptions, thrownError) {
|
164
|
+
//alert("........!!");
|
165
|
+
}
|
166
|
+
});
|
167
|
+
}
|
168
|
+
|
169
|
+
</script>
|
170
|
+
<script id="etu-recommender" type="text/javascript">
|
171
|
+
var atid=rId();
|
172
|
+
sLogin=GetCkValue("udnmember");
|
173
|
+
var erUrlPrefix='https://rec.udn.com/';
|
174
|
+
var _qevents = _qevents || [];
|
175
|
+
|
176
|
+
_qevents.push({
|
177
|
+
cid : 'udn.com-com-soft',
|
178
|
+
act : 'view',
|
179
|
+
cat : ['news','cm','SPORTS'],
|
180
|
+
uid : sLogin,
|
181
|
+
pid : 'cm-sports-'+atid
|
182
|
+
});
|
183
|
+
var _qquery = _qquery || [];
|
184
|
+
|
185
|
+
_qquery.push({
|
186
|
+
cid : 'udn.com-com-soft',
|
187
|
+
act : 'view',
|
188
|
+
//cat : ['news','cm','SPORTS'],
|
189
|
+
cat : ['news','cm','SPORTS'],
|
190
|
+
uid : '',
|
191
|
+
val : 'cm-sports-'+atid
|
192
|
+
});
|
193
|
+
|
194
|
+
function etuRecQueryCallBack( queryParams,queryResult) {
|
195
|
+
// alert (queryResult);
|
196
|
+
if('C04' == queryParams['name']){
|
197
|
+
getC04Prods(queryResult);
|
198
|
+
}else if ('D04' == queryParams['name']){
|
199
|
+
getD04Prods(queryResult);
|
200
|
+
}
|
201
|
+
else{
|
202
|
+
//do nothing
|
203
|
+
getProds(queryResult);
|
204
|
+
}
|
205
|
+
}
|
206
|
+
|
207
|
+
(function() {
|
208
|
+
var er = document.createElement('script');
|
209
|
+
er.type = 'text/javascript';
|
210
|
+
er.async = true;
|
211
|
+
er.src = erUrlPrefix + 'er.js?' + (new Date().getTime());
|
212
|
+
var currentJs = document.getElementById('etu-recommender');
|
213
|
+
currentJs.parentNode.insertBefore(er, currentJs);
|
214
|
+
})();
|
215
|
+
|
216
|
+
</script>
|
217
|
+
|
218
|
+
|
219
|
+
<script language="JavaScript" type="text/javascript">
|
220
|
+
var $jq = jQuery.noConflict();
|
221
|
+
$jq(document).ready(function(){
|
222
|
+
|
223
|
+
// �D���
|
224
|
+
$jq("#sidemenu li").hover(
|
225
|
+
function() { $jq(this).addClass("iehover"); },
|
226
|
+
function() { $jq(this).removeClass("iehover"); }
|
227
|
+
);
|
228
|
+
|
229
|
+
|
230
|
+
// �����W�s������u��
|
231
|
+
$jq('a').focus(function(){
|
232
|
+
this.blur();
|
233
|
+
});
|
234
|
+
|
235
|
+
});
|
236
|
+
</script>
|
237
|
+
|
238
|
+
|
239
|
+
<script type="text/javascript">
|
240
|
+
<!--
|
241
|
+
function MM_jumpMenu(targ,selObj,restore){ //v3.0
|
242
|
+
eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
|
243
|
+
if (restore) selObj.selectedIndex=0;
|
244
|
+
}
|
245
|
+
//-->
|
246
|
+
</script>
|
247
|
+
|
248
|
+
<!-- track -->
|
249
|
+
<!-- google analytics -->
|
250
|
+
<script type="text/javascript">
|
251
|
+
|
252
|
+
var _gaq = _gaq || [];
|
253
|
+
_gaq.push(['_setAccount', 'UA-19660006-1']);
|
254
|
+
_gaq.push(['_setDomainName', '.udn.com']);
|
255
|
+
_gaq.push(['_trackPageview']);
|
256
|
+
|
257
|
+
(function() {
|
258
|
+
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
|
259
|
+
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
260
|
+
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
|
261
|
+
})();
|
262
|
+
|
263
|
+
</script>
|
264
|
+
<!-- google analytics -->
|
265
|
+
|
266
|
+
<!-- Begin comScore Tag -->
|
267
|
+
<script>
|
268
|
+
var _comscore = _comscore || [];
|
269
|
+
_comscore.push({ c1: "2", c2: "7390954" });
|
270
|
+
(function() {
|
271
|
+
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
|
272
|
+
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
|
273
|
+
el.parentNode.insertBefore(s, el);
|
274
|
+
})();
|
275
|
+
</script>
|
276
|
+
<noscript>
|
277
|
+
<img src="http://b.scorecardresearch.com/p?c1=2&c2=7390954&cv=2.0&cj=1" />
|
278
|
+
</noscript>
|
279
|
+
<!-- End comScore Tag -->
|
280
|
+
|
281
|
+
<!-- Start Alexa Certify Javascript -->
|
282
|
+
<script type="text/javascript">
|
283
|
+
_atrk_opts = { atrk_acct:"aw0Di1a4ZP00aY", domain:"udn.com",dynamic: true};
|
284
|
+
(function() { var as = document.createElement('script'); as.type = 'text/javascript'; as.async = true; as.src = "https://d31qbv1cthcecs.cloudfront.net/atrk.js"; var s = document.getElementsByTagName('script')[0];s.parentNode.insertBefore(as, s); })();
|
285
|
+
</script>
|
286
|
+
<noscript><img src="https://d5nxst8fruw4z.cloudfront.net/atrk.gif?account=aw0Di1a4ZP00aY" style="display:none" height="1" width="1" alt="" /></noscript>
|
287
|
+
<!-- End Alexa Certify Javascript -->
|
288
|
+
|
289
|
+
<!-- track -->
|
290
|
+
|
291
|
+
|
292
|
+
</head>
|
293
|
+
|
294
|
+
<body>
|
295
|
+
<a name="top"></a>
|
296
|
+
|
297
|
+
<!-- storytop_spo.htm -->
|
298
|
+
|
299
|
+
<div id="header">
|
300
|
+
<div id="header_logo"><img src="http://s.udn.com.tw/2010/images/logo_sports.gif" height="65" border="0" usemap="#Map">
|
301
|
+
<iframe src="/2010/AD/SPORTS_140X50.html" width="140" height="50" scrolling="no" frameborder="0" allowtransparency="true"></iframe>
|
302
|
+
<map name="Map">
|
303
|
+
<area shape="poly" coords="2,13,138,13,138,28,42,28,42,56,2,56" href="http://udn.com/">
|
304
|
+
<area shape="rect" coords="45,30,152,58" href="http://udn.com/NEWS/SPORTS/">
|
305
|
+
</map></div>
|
306
|
+
|
307
|
+
<div id="family">
|
308
|
+
<script type="text/javascript" src="http://udn.com/2010MAIN/js/udnfamily.js"></script>
|
309
|
+
|
310
|
+
</div>
|
311
|
+
<!-- /family -->
|
312
|
+
|
313
|
+
<div id="searchbar">
|
314
|
+
<style type="text/css">
|
315
|
+
#gotop {
|
316
|
+
background-image: url("http://s.udn.com.tw/2010/img/sprite.png");
|
317
|
+
background-position: 950px -12px;
|
318
|
+
background-repeat: no-repeat;
|
319
|
+
display: block;
|
320
|
+
margin: auto;
|
321
|
+
overflow: hidden;
|
322
|
+
padding: 18px 0 0;
|
323
|
+
width: 1000px;
|
324
|
+
}
|
325
|
+
#searchbar {
|
326
|
+
background-image: url("http://s.udn.com.tw/2010/img/sprite.png");
|
327
|
+
background-position: right -39px;
|
328
|
+
background-repeat: no-repeat;
|
329
|
+
height: 25px;
|
330
|
+
position: absolute;
|
331
|
+
right: 6px;
|
332
|
+
top: 32px;
|
333
|
+
width: 450px;
|
334
|
+
}
|
335
|
+
#search_kw {
|
336
|
+
background-color: transparent;
|
337
|
+
border-style: none;
|
338
|
+
float: left;
|
339
|
+
font-family: Arial,helvetica,clean,"....","PMingLiU",sans-serif;
|
340
|
+
font-size: 12px;
|
341
|
+
height: 20px;
|
342
|
+
line-height: 20px;
|
343
|
+
padding-left: 5px;
|
344
|
+
width: 227px;
|
345
|
+
}
|
346
|
+
</style>
|
347
|
+
|
348
|
+
<script>
|
349
|
+
<!--
|
350
|
+
function chkform() {
|
351
|
+
document.sform1.Keywords.value=document.sform1.q.value; //update by kuai for google search
|
352
|
+
if(document.sform1.Keywords.value == "") return;
|
353
|
+
if(document.getElementById("search_type").value == "udndata" )
|
354
|
+
document.sform1.action = "http://data.udn.com/data/Search";
|
355
|
+
else
|
356
|
+
document.sform1.action = "http://fe3.udn.com/search/udnsearch4big5.jsp";
|
357
|
+
document.sform1.submit();
|
358
|
+
}
|
359
|
+
//-->
|
360
|
+
</script>
|
361
|
+
<form id="sform1" method="get" name="sform1" action="">
|
362
|
+
<select id="search_type" name="search_type">
|
363
|
+
<option value="udn">udn</option>
|
364
|
+
<option value="websearch">web</option>
|
365
|
+
<option value="udndata">���v�s�D</option>
|
366
|
+
</select><input id="search_kw" onkeydown="if(event.keyCode==13) chkform()" onmouseover="this.focus()" onclick="this.value='';" name="q" value="���� " type="text"><input id="Keywords" name="Keywords" type="hidden"><input name="channel" value="index" type="hidden"><a id="search_submit" href="javascript:chkform()"></a>
|
367
|
+
</form>
|
368
|
+
|
369
|
+
</div>
|
370
|
+
<!-- /searchbar -->
|
371
|
+
<!-- ��V��� SSI�}�l-->
|
372
|
+
|
373
|
+
|
374
|
+
|
375
|
+
|
376
|
+
|
377
|
+
<script language="javascript" type="text/javascript">
|
378
|
+
<!--
|
379
|
+
// ���ƥ�
|
380
|
+
var nav_item = 11;
|
381
|
+
|
382
|
+
function nav_show(lv)
|
383
|
+
{
|
384
|
+
if(document.getElementById(lv))
|
385
|
+
{
|
386
|
+
document.getElementById(lv).style.display='block';
|
387
|
+
}
|
388
|
+
|
389
|
+
for(var i=1;i<nav_item+1;i++)
|
390
|
+
{
|
391
|
+
if(document.getElementById("sub_" + i) && "sub_" + i != lv)
|
392
|
+
{
|
393
|
+
document.getElementById("sub_" + i).style.display='none';
|
394
|
+
}
|
395
|
+
}
|
396
|
+
}
|
397
|
+
-->
|
398
|
+
</script>
|
399
|
+
|
400
|
+
<table width="996" border="0" cellpadding="0" cellspacing="0" align="center">
|
401
|
+
<tr><td>
|
402
|
+
<div id="navigation" onMouseOut="nav_show('navigation')">
|
403
|
+
<dl>
|
404
|
+
|
405
|
+
|
406
|
+
|
407
|
+
<dd onMouseOver="nav_show('sub_1')"><a href="http://mag.udn.com/mag/sports/main_page.jsp?f_MAIN_ID=437" target='_blank'>����¾��</a>
|
408
|
+
<dl id="sub_1">
|
409
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=437&f_SUB_ID=4505" target="target='_blank'"> �E ���p�F��</a></dd>
|
410
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=437&f_SUB_ID=4506" target="target='_blank'"> �E ���p�Ԧa</a></dd>
|
411
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=437&f_SUB_ID=4507" target="target='_blank'"> �E �p������</a></dd>
|
412
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=437&f_SUB_ID=4508" target="target='_blank'"> �E �W�a�[�I</a></dd>
|
413
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=437&f_SUB_ID=4509" target="target='_blank'"> �E ���D�y�P</a></dd>
|
414
|
+
|
415
|
+
</dl>
|
416
|
+
</dd>
|
417
|
+
|
418
|
+
<dd onMouseOver="nav_show('sub_2')"><a href="http://mag.udn.com/mag/sports/main_page.jsp?f_MAIN_ID=104" target='_blank'>����¾��</a>
|
419
|
+
<dl id="sub_2">
|
420
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=104&f_SUB_ID=542" target="target='_blank'"> �E �Τ@��</a></dd>
|
421
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=104&f_SUB_ID=544" target="target='_blank'"> �E �q�j�R��</a></dd>
|
422
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=104&f_SUB_ID=568" target="target='_blank'"> �E Lamigo���</a></dd>
|
423
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=104&f_SUB_ID=543" target="target='_blank'"> �E ���H�S�̶H</a></dd>
|
424
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=104&f_SUB_ID=3148" target="target='_blank'"> �E ¾�εJ�I</a></dd>
|
425
|
+
|
426
|
+
</dl>
|
427
|
+
</dd>
|
428
|
+
|
429
|
+
<dd onMouseOver="nav_show('sub_3')"><a href="http://mag.udn.com/mag/sports/main_page.jsp?f_MAIN_ID=115" target='_blank'>�βy�@��</a>
|
430
|
+
<dl id="sub_3">
|
431
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=115&f_SUB_ID=571" target="target='_blank'"> �E �饻¾��</a></dd>
|
432
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=115&f_SUB_ID=572" target="target='_blank'"> �E �J�I�H��</a></dd>
|
433
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=115&f_SUB_ID=609" target="target='_blank'"> �E �ξ¸��D</a></dd>
|
434
|
+
|
435
|
+
</dl>
|
436
|
+
</dd>
|
437
|
+
|
438
|
+
<dd onMouseOver="nav_show('sub_4')"><a href="http://mag.udn.com/mag/sports/main_page.jsp?f_MAIN_ID=116" target='_blank'>�ȥ~�y�P</a>
|
439
|
+
<dl id="sub_4">
|
440
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=116&f_SUB_ID=575" target="target='_blank'"> �E ���إ�</a></dd>
|
441
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=116&f_SUB_ID=4119" target="target='_blank'"> �E ������</a></dd>
|
442
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=116&f_SUB_ID=5738" target="target='_blank'"> �E ������</a></dd>
|
443
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=116&f_SUB_ID=4196" target="target='_blank'"> �E �ٺּw</a></dd>
|
444
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=116&f_SUB_ID=578" target="target='_blank'"> �E ��L�y��</a></dd>
|
445
|
+
|
446
|
+
</dl>
|
447
|
+
</dd>
|
448
|
+
|
449
|
+
<dd onMouseOver="nav_show('sub_5')"><a href="http://mag.udn.com/mag/sports/main_page.jsp?f_MAIN_ID=109" target='_blank'>�x�y����</a>
|
450
|
+
<dl id="sub_5">
|
451
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=109&f_SUB_ID=6153" target="target='_blank'"> �E �@�ɪM�k�x</a></dd>
|
452
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=109&f_SUB_ID=5263" target="target='_blank'"> �E �L�ѻ��M��</a></dd>
|
453
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=109&f_SUB_ID=545" target="target='_blank'"> �E �ܢТϾԪp</a></dd>
|
454
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=109&f_SUB_ID=547" target="target='_blank'"> �E �x�ªᵶ</a></dd>
|
455
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=109&f_SUB_ID=546" target="target='_blank'"> �E �`�J����</a></dd>
|
456
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=109&f_SUB_ID=709" target="target='_blank'"> �E �x�W���P</a></dd>
|
457
|
+
|
458
|
+
</dl>
|
459
|
+
</dd>
|
460
|
+
|
461
|
+
<dd onMouseOver="nav_show('sub_6')"><a href="http://mag.udn.com/mag/sports/main_page.jsp?f_MAIN_ID=111" target='_blank'>���y�Ѧa</a>
|
462
|
+
<dl id="sub_6">
|
463
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=111&f_SUB_ID=551" target="target='_blank'"> �E �y�¶ǯu</a></dd>
|
464
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=111&f_SUB_ID=554" target="target='_blank'"> �E �G���H��</a></dd>
|
465
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=111&f_SUB_ID=552" target="target='_blank'"> �E ���y����</a></dd>
|
466
|
+
|
467
|
+
</dl>
|
468
|
+
</dd>
|
469
|
+
|
470
|
+
<dd onMouseOver="nav_show('sub_7')"><a href="http://mag.udn.com/mag/sports/main_page.jsp?f_MAIN_ID=114" target='_blank'>��¸U�H</a>
|
471
|
+
<dl id="sub_7">
|
472
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=114&f_SUB_ID=6170" target="target='_blank'"> �E ���t�ȹB</a></dd>
|
473
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=114&f_SUB_ID=2130" target="target='_blank'"> �E ¾�~���y</a></dd>
|
474
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=114&f_SUB_ID=3833" target="target='_blank'"> �E ¾�~���y</a></dd>
|
475
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=114&f_SUB_ID=556" target="target='_blank'"> �E �������y</a></dd>
|
476
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=114&f_SUB_ID=5892" target="target='_blank'"> �E ���]�֬�</a></dd>
|
477
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=114&f_SUB_ID=1796" target="target='_blank'"> �E �B�ʩ_�D</a></dd>
|
478
|
+
|
479
|
+
</dl>
|
480
|
+
</dd>
|
481
|
+
|
482
|
+
<dd onMouseOver="nav_show('sub_8')"><a href="http://mag.udn.com/mag/sports/main_page.jsp?f_MAIN_ID=360" target='_blank'>�B�ʱm��</a>
|
483
|
+
<dl id="sub_8">
|
484
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=360&f_SUB_ID=3409" target="target='_blank'"> �E �βy��</a></dd>
|
485
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=360&f_SUB_ID=3411" target="target='_blank'"> �E �x�y�Ӹg</a></dd>
|
486
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=360&f_SUB_ID=3412" target="target='_blank'"> �E ���y�ߤ�</a></dd>
|
487
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=360&f_SUB_ID=3423" target="target='_blank'"> �E ��L��s��</a></dd>
|
488
|
+
<dd><a href="http://mag.udn.com/mag/sports/itempage.jsp?f_MAIN_ID=360&f_SUB_ID=3422" target="target='_blank'"> �E �B�m������</a></dd>
|
489
|
+
|
490
|
+
</dl>
|
491
|
+
</dd>
|
492
|
+
|
493
|
+
<dd class="no_arrow"><a href="http://mag.udn.com/mag/sports/TV_Schedule.jsp">�q���༽</a>
|
494
|
+
|
495
|
+
<dd onMouseOver="nav_show('sub_9')"><a href="####">���e����</a>
|
496
|
+
<dl id="sub_9">
|
497
|
+
<dd><a href="http://dignews.udn.com/forum/udnnews/news_hot.jsp?rows=50&during=-1&type=daily&cate=11" target='_blank'> �E �o�N�s�D</a></dd>
|
498
|
+
<dd><a href="http://mag.udn.com/mag/sports/author_list.jsp" target='_blank'> �E �M��@�a</a></dd>
|
499
|
+
<dd><a href="http://mag.udn.com/mag/sports/publication.jsp" target='_blank'> �E �u�W��Z</a></dd>
|
500
|
+
<dd><a href="http://mag.udn.com/mag/sports/forum.jsp" target='_blank'> �E �X�ȯd��</a></dd>
|
501
|
+
<dd><a href="http://mag.udn.com/udnrss/sports_rss.xml" target='_blank'> �E RSS�q�\</a></dd>
|
502
|
+
<dd><a href="http://mag.udn.com/mag/sports/votelist.jsp" target='_blank'> �E �벼���G</a></dd>
|
503
|
+
<dd><a href="http://mag.udn.com/mag/sports/article_ord.jsp" target='_blank'> �E �峹�Ʀ�</a></dd>
|
504
|
+
<dd><a href="http://city.udn.com/category.jsp?f_TYPE=gd" target='_blank'> �E �B�ʪ��s</a></dd>
|
505
|
+
|
506
|
+
</dl>
|
507
|
+
</dd>
|
508
|
+
|
509
|
+
</dl>
|
510
|
+
</div>
|
511
|
+
</td></tr></table>
|
512
|
+
|
513
|
+
|
514
|
+
<!-- /nav -->
|
515
|
+
<!-- created on wm@cmdes.udn.com 2014/09/23 22:29:3 58 199 -->
|
516
|
+
|
517
|
+
|
518
|
+
<!-- ��V��� SSI����-->
|
519
|
+
</div>
|
520
|
+
|
521
|
+
|
522
|
+
|
523
|
+
<!-- /header -->
|
524
|
+
<!-- onead_Script.htm -->
|
525
|
+
<!-- OneAD InRead �P InPage �}�l -->
|
526
|
+
<script type="text/javascript">
|
527
|
+
var ONEAD = {};
|
528
|
+
ONEAD.channel = 21; // UDN�G�s�D�W�D
|
529
|
+
ONEAD.volume = 0.02; // range is 0 to 1 (float)
|
530
|
+
ONEAD.slot_limit = {width: 980, height: 405};
|
531
|
+
// optional(s)
|
532
|
+
ONEAD.slot_limit_multiple = {
|
533
|
+
inread: {
|
534
|
+
width: 550,
|
535
|
+
height: 356
|
536
|
+
}
|
537
|
+
};
|
538
|
+
ONEAD.response_freq = {start:1, step: 3};
|
539
|
+
ONEAD.category = "-1";
|
540
|
+
ONEAD.wmode = "opaque";
|
541
|
+
ONEAD.response_freq_multiple = {
|
542
|
+
instream: "1,4,7,10,13,16,19,22,25,28,31,34,37,40",
|
543
|
+
inread: "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30"
|
544
|
+
};
|
545
|
+
ONEAD.cmd = ONEAD.cmd || [];
|
546
|
+
</script>
|
547
|
+
<script type="text/javascript">
|
548
|
+
// For OneAD, DON'T MODIFY the following
|
549
|
+
if (typeof(ONEAD) !== "undefined"){
|
550
|
+
ONEAD.uid = "1000009";
|
551
|
+
ONEAD.external_url = "http://onead.onevision.com.tw/"; // base_url, post-slash is necessary
|
552
|
+
ONEAD.wrapper = 'ONEAD_player_wrapper';
|
553
|
+
ONEAD.wrapper_multiple = {
|
554
|
+
instream: "ONEAD_player_wrapper", // equals to inpage
|
555
|
+
inread: "ONEAD_inread_wrapper",
|
556
|
+
incover: "ONEAD_incover_wrapper"
|
557
|
+
};
|
558
|
+
}
|
559
|
+
if (typeof window.isip_js == "undefined") {
|
560
|
+
(function() {
|
561
|
+
var src = 'http://ad-specs.guoshipartners.com/static/js/isip.v2.js';
|
562
|
+
var js = document.createElement('script');
|
563
|
+
js.async = true;
|
564
|
+
js.type = 'text/javascript';
|
565
|
+
var useSSL = 'https:' == document.location.protocol;
|
566
|
+
js.src = src;
|
567
|
+
var node = document.getElementsByTagName('script')[0];
|
568
|
+
node.parentNode.insertBefore(js, node.nextSibling); // insert after
|
569
|
+
})();
|
570
|
+
}
|
571
|
+
</script>
|
572
|
+
<script type="text/javascript">
|
573
|
+
ONEAD_on_get_response = function(param){
|
574
|
+
// if there is no pid, param is {}, it's not null
|
575
|
+
if (param === null || param.pid === undefined){
|
576
|
+
// �S�s�i
|
577
|
+
}else{
|
578
|
+
var t = setInterval(function(){
|
579
|
+
if (ONEAD_is_above(100)){ }
|
580
|
+
}, 1000);
|
581
|
+
}
|
582
|
+
}
|
583
|
+
// �o�Ө禡�W�٬O�T�w���A�s�i�����|�I�s��
|
584
|
+
function changeADState(obj){
|
585
|
+
if (obj.newstate == 'COMPLETED' || obj.newstate == 'DELETED' ){
|
586
|
+
if (ONEAD.play_mode == 'incover'){
|
587
|
+
// remove the dimming block
|
588
|
+
ONEAD_cleanup(ONEAD.play_mode);
|
589
|
+
}else{
|
590
|
+
ONEAD_cleanup();
|
591
|
+
}
|
592
|
+
}
|
593
|
+
}
|
594
|
+
</script>
|
595
|
+
<!-- OneAD InRead �P InPage ���� -->
|
596
|
+
<!-- neck_onead-->
|
597
|
+
<!-- �D�P�B���J isip.js ���@�k -->
|
598
|
+
<div id="div-onead-ad">
|
599
|
+
<script type="text/javascript">
|
600
|
+
if (typeof(ONEAD) !== "undefined"){
|
601
|
+
ONEAD.cmd = ONEAD.cmd || [];
|
602
|
+
ONEAD.cmd.push(function(){
|
603
|
+
ONEAD_slot('div-onead-ad');
|
604
|
+
});
|
605
|
+
}
|
606
|
+
</script>
|
607
|
+
</div>
|
608
|
+
|
609
|
+
|
610
|
+
<table class="mainbg" align="center" border="0" cellpadding="0" cellspacing="9" width="1000">
|
611
|
+
<tbody><tr>
|
612
|
+
<td valign="top"><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
613
|
+
<tbody><tr>
|
614
|
+
<td>
|
615
|
+
<iframe src="/2010/AD/SPORTS_728X90.html" width="728" height="90" scrolling="no" frameborder="0"></iframe>
|
616
|
+
</td>
|
617
|
+
</tr>
|
618
|
+
<tr>
|
619
|
+
<td class="path"><div style="float: left;"><a class="path" href="../../index.shtml">udn</a> / <a class="path" href="../index.shtml">�B�ʤj�p��</a> / <a class="path" href="index.shtml">���t�ȹB</a></div><div style="float: right; padding-top: 2px;"><iframe src="/2010/BD/hotsearch_b.htm" scrolling="no" frameborder="0" height="20" width="350" allowtransparency="true"></iframe></div>
|
620
|
+
</td>
|
621
|
+
</tr>
|
622
|
+
</tbody></table>
|
623
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100%">
|
624
|
+
<tbody><tr>
|
625
|
+
<td height="100%" valign="top" width="142">
|
626
|
+
<!--�����U�Կ��}�l-->
|
627
|
+
|
628
|
+
|
629
|
+
<script type="text/JavaScript">
|
630
|
+
<!--
|
631
|
+
if (window.navigator.userAgent.indexOf("MSIE")>=1) {
|
632
|
+
//�p�G�s�����OIE
|
633
|
+
setActiveStyleSheet("sidemenu_IE.css");
|
634
|
+
} else {
|
635
|
+
//�p�G�s�����O��L
|
636
|
+
setActiveStyleSheet("sidemenu_FF.css");
|
637
|
+
}
|
638
|
+
|
639
|
+
function setActiveStyleSheet(title){
|
640
|
+
document.write('<link href="http://s.udn.com.tw/2010/css/'+title+'" rel="stylesheet" type="text/css">');
|
641
|
+
}
|
642
|
+
//-->
|
643
|
+
</script>
|
644
|
+
<DIV class=box_outline id=sidemenu_box>
|
645
|
+
<DIV class=box_line1>
|
646
|
+
<ul id="sidemenu">
|
647
|
+
<script type="text/javascript" charset="big5" src="../../js/newsmenu_2010.js"></script>
|
648
|
+
</ul>
|
649
|
+
</DIV>
|
650
|
+
</DIV>
|
651
|
+
|
652
|
+
<!--�����U�Կ�浲��-->
|
653
|
+
<div id="sidemenu_ad">
|
654
|
+
<!--����SSI�}�l-->
|
655
|
+
<br>
|
656
|
+
<iframe src="/2010/BD/L-iframe.html" width=130 height=400 style="border: 0px none;" scrolling="no"></iframe>
|
657
|
+
|
658
|
+
<!--��ϴ��Ѥ��s�i-->
|
659
|
+
<table width="100%" border="0" align="center" cellpadding="2" cellspacing="1">
|
660
|
+
<tr>
|
661
|
+
<td>
|
662
|
+
<iframe src="http://udn.com/2010/BD/sports_left_iframe.html" height="630" scrolling="No" frameborder="0" width="120" align="left" ></iframe>
|
663
|
+
</td>
|
664
|
+
</tr>
|
665
|
+
</table>
|
666
|
+
<!--��ϴ��Ѥ��s�i-->
|
667
|
+
|
668
|
+
|
669
|
+
<!--����SSI����-->
|
670
|
+
</div>
|
671
|
+
<!-- /sidemenu_ad -->
|
672
|
+
</td>
|
673
|
+
<td width="10"><img src="http://s.udn.com.tw/2010/images/spacer_002.gif" height="10" width="10"></td>
|
674
|
+
<td height="100%" valign="top"><table class="border" border="0" cellpadding="10" cellspacing="0" height="100%" width="100%">
|
675
|
+
<tbody><tr>
|
676
|
+
<td bgcolor="#ffffff" valign="top"><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
677
|
+
<tbody><tr>
|
678
|
+
<td><!--�h���X�@��table�H������r�P�U��table����--></td>
|
679
|
+
</tr>
|
680
|
+
<tr>
|
681
|
+
<td valign="top" width="100%">
|
682
|
+
<!-- ****** 2008-10 by ginger ******************************************************************************-->
|
683
|
+
<table border="0" cellpadding="3" cellspacing="0" width="100%">
|
684
|
+
<tbody><tr bgcolor="#f2f2f2">
|
685
|
+
<td class="story_function" width="45%">
|
686
|
+
|
687
|
+
<a href="http://dignews.udn.com/forum/udnnews/news.jsp?pcate=SPORTS">�̷s</a> | <a href="http://dignews.udn.com/forum/udnnews/news_hot.jsp?rows=50&during=-1&type=daily&cate=11">�o�N</a> | <a href="http://dignews.udn.com/">�z�s�D</a>
|
688
|
+
<!--
|
689
|
+
<div id="abgne_float_ad" style="position: absolute;opacity: 0">
|
690
|
+
<script type="text/javascript" src="http://money.udn.com/watermark_omo_2013.js"></script>
|
691
|
+
</div>
|
692
|
+
-->
|
693
|
+
<script language="JavaScript" src="http://s.udn.com.tw/2010/js/jquery.floatDiv.js" type="text/javascript"></script>
|
694
|
+
<script>
|
695
|
+
var url = document.URL;
|
696
|
+
|
697
|
+
function RedirToMobile() {
|
698
|
+
setCookie("dev","mobile",false,"/","udn.com","","null");
|
699
|
+
window.location = url;
|
700
|
+
}
|
701
|
+
|
702
|
+
jQuery(document).ready(function() {
|
703
|
+
if (GetCkValue("dev") == "pc") {
|
704
|
+
jQuery("body").append("<div align=\"center\" valign=\"middle\" id=\"float\" style=\"width:169px;height:31px;\"><a href=\"javascript:RedirToMobile();\"><img src=\"http://s.udn.com.tw/2010/images/back.png\" border=\"0\"></a></div>");
|
705
|
+
jQuery("#float").floatdiv("rightbottom");
|
706
|
+
}
|
707
|
+
});
|
708
|
+
</script>
|
709
|
+
<link rel="stylesheet" type="text/css" href="http://s.udn.com.tw/2010/css/usprite.css?2" />
|
710
|
+
<style>
|
711
|
+
.fs {
|
712
|
+
float:left;
|
713
|
+
list-style-type:none;
|
714
|
+
cursor: Pointer;
|
715
|
+
margin-right: 3px;
|
716
|
+
}
|
717
|
+
|
718
|
+
.fs2 {
|
719
|
+
float:left;
|
720
|
+
list-style-type:none;
|
721
|
+
margin-right: 3px;
|
722
|
+
width:27px;
|
723
|
+
}
|
724
|
+
|
725
|
+
.fs3 {
|
726
|
+
float:right;
|
727
|
+
list-style-type:none;
|
728
|
+
margin-right: 3px;
|
729
|
+
cursor: Pointer;
|
730
|
+
width:35px;
|
731
|
+
}
|
732
|
+
|
733
|
+
.fgo {
|
734
|
+
float:left;
|
735
|
+
cursor: Pointer;
|
736
|
+
margin-right:3px;
|
737
|
+
width:30px;
|
738
|
+
}
|
739
|
+
.fgo2 {
|
740
|
+
float:left;
|
741
|
+
cursor: Pointer;
|
742
|
+
margin-right:3px;
|
743
|
+
width:80px;
|
744
|
+
}
|
745
|
+
.fgo3 {
|
746
|
+
padding-right:15px;
|
747
|
+
float:right;
|
748
|
+
*position:absolute !important;
|
749
|
+
}
|
750
|
+
</style>
|
751
|
+
|
752
|
+
|
753
|
+
<script>
|
754
|
+
var ur = document.URL;
|
755
|
+
var urArr = ur.split("/");
|
756
|
+
var urKey = urArr[urArr.length-1];
|
757
|
+
|
758
|
+
if (urKey == "" || urKey.indexOf("index") != -1) {}
|
759
|
+
else {
|
760
|
+
document.write("| �r�šG<div class=\"fgo3\"><ul><li id=\"fs1\" class=\"sprite-fontsize_1 fs\"></li><li id=\"fs2\" class=\"sprite-fontsize_2 fs\"></li><li id=\"fs3\" class=\"sprite-fontsize_3 fs\"></li><li id=\"fs4\" class=\"sprite-fontsize_4 fs\"></li></ul></div>");
|
761
|
+
}
|
762
|
+
</script>
|
763
|
+
<!-- FontSize text -->
|
764
|
+
|
765
|
+
|
766
|
+
|
767
|
+
</td>
|
768
|
+
<td width="55%" align="right" nowrap="nowrap">
|
769
|
+
|
770
|
+
<select name="jumpMenu" class="related" id="jumpMenu" onChange="MM_jumpMenu('parent',this,0)">
|
771
|
+
<option selected>�п��---<���t�ȹB>�����s�D</option>
|
772
|
+
|
773
|
+
<option value="8954407.shtml">���بk�x�p�t���ħJ ���ԭV�d</option>
|
774
|
+
|
775
|
+
<option value="8954085.shtml">�βy�����y�I�x������ ���ؾԮ���վ�</option>
|
776
|
+
|
777
|
+
<option value="8954099.shtml">�βy��5��KO����m�L �n�����N�ԤO</option>
|
778
|
+
|
779
|
+
<option value="8954074.shtml">���y�k������M�m�Y�� ���������</option>
|
780
|
+
|
781
|
+
<option value="8954110.shtml">��¡���h�P�E ���ҲE�����@�����x�F</option>
|
782
|
+
|
783
|
+
<option value="8954126.shtml">��a���X�G�Y�L �����ٹܪ���</option>
|
784
|
+
|
785
|
+
<option value="8954138.shtml">�\�Q�b�}���� ��ȹB������</option>
|
786
|
+
|
787
|
+
<option value="8954106.shtml">���P�l�H�� �����Ц^��</option>
|
788
|
+
|
789
|
+
<option value="8953180.shtml">�βy���ڻ������� �m�Ӥ��ȫn����</option>
|
790
|
+
|
791
|
+
<option value="8953176.shtml">�βy�����j�D�j�� ���f�ıj�մ��w</option>
|
792
|
+
|
793
|
+
<option value="8953246.shtml">�ۥѨ����k�l����l�v�� �L�n����</option>
|
794
|
+
|
795
|
+
<option value="8953249.shtml">�|�������ҲE�a�� �̶}�ߪ���4�W</option>
|
796
|
+
|
797
|
+
<option value="8946934.shtml">���t�ȹB �βy�ɵ{���༽��</option>
|
798
|
+
|
799
|
+
<option value="8953250.shtml">�вy���n���ŽվԳN �k�Υu���</option>
|
800
|
+
|
801
|
+
<option value="8953247.shtml">���y���c�۾������j�� �k��8�j��B</option>
|
802
|
+
|
803
|
+
<option value="8953240.shtml">���y�����°t �k�Χ��ɱ��</option>
|
804
|
+
|
805
|
+
<option value="8953321.shtml">�ȹB���P�]�P���ѭ��I�v��</option>
|
806
|
+
|
807
|
+
<option value="8953248.shtml">�x�y�����ħJ�k�x�G�N�� ���j�I����</option>
|
808
|
+
|
809
|
+
<option value="8953167.shtml">�βy�����@��a�� �n���y�g�m��</option>
|
810
|
+
|
811
|
+
<option value="8953168.shtml">�βy������g���ɰ}�e ���~��m�L</option>
|
812
|
+
|
813
|
+
</select><!--for next and prev -->
|
814
|
+
<div style="display:none;"><input id="rac" type="text" value="21"></div>
|
815
|
+
|
816
|
+
|
817
|
+
</td>
|
818
|
+
|
819
|
+
</tr>
|
820
|
+
</tbody></table>
|
821
|
+
<!-- ****************************************************************************************************-->
|
822
|
+
</td>
|
823
|
+
</tr>
|
824
|
+
<tr>
|
825
|
+
<td class="s" bgcolor="#ffffff" valign="top"><img src="http://s.udn.com.tw/2010/images/spacer_002.gif" height="5" width="10"></td>
|
826
|
+
</tr>
|
827
|
+
<tr>
|
828
|
+
<td bgcolor="#ffffff" valign="top"><table border="0" cellpadding="0" cellspacing="3" width="100%">
|
829
|
+
<tbody><tr>
|
830
|
+
<td width="76%"><div class="story_title" style="float: left;" id="story_title">�n��style ���رi�x�d�p�ʧ@</div><div id="bq" name="bq" style="float:right"><IFRAME height=25 src="/2010/AD/SPORTS_BQ.html" frameBorder=0 width=150 scrolling=no></IFRAME></div>
|
831
|
+
|
832
|
+
</td>
|
833
|
+
</tr>
|
834
|
+
</tbody></table>
|
835
|
+
<table border="0" cellpadding="0" cellspacing="3" width="100%">
|
836
|
+
<tbody>
|
837
|
+
<tr>
|
838
|
+
<td background="http://s.udn.com.tw/2010/images/linedot.gif" width="130%"><img src="http://s.udn.com.tw/2010/images/linedot.gif" height="1" width="1"></td>
|
839
|
+
</tr>
|
840
|
+
<tr>
|
841
|
+
<td><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
842
|
+
<tbody>
|
843
|
+
<tr>
|
844
|
+
<td class="story_author" width="75%"><div id="story_author">�i�p�X���������O�̥j�x���j</div></td>
|
845
|
+
<td class="story_author" width="25%"><div id="story_update" align="right">2014.09.22 10:29 am</div></td>
|
846
|
+
</tr>
|
847
|
+
</tbody>
|
848
|
+
</table></td>
|
849
|
+
</tr>
|
850
|
+
<tr>
|
851
|
+
<td class="story_author"> </td>
|
852
|
+
</tr>
|
853
|
+
<tr>
|
854
|
+
<td valign="top"><div class="story" id="story"><p>���t�ȹB�~�����}�ɨ�ѡA�n��������즳�N�L�N���p�ʧ@�A�w�g�S�o�U����M�N���Ϋ��n���D�C���~����ɥu�n�b�n���X�ɡA�ꤺ���M�нm�γ����D���ǷQ���쪺�u�N�~�v�A���~���t�ȹB�h����رi�x���j����}�C<P>
|
855
|
+
�H�g���v�ɬ��ҡA�n�����Ȭ��X��줯�t�X�ͪ��@�ɯŦW�N�A���ϫO�����P�A��վ��ɵ{�즭�W�A���ض����L�`���ܡG�u�S��k�A�n���O�a�D�ڡI�v�j�����`�нm���q�Ҥ]���ܡA���W�X�ɡA�s��Ĺ�o�⭱���P��~�����C<P>
|
856
|
+
�ӫn�������쪺�S�O�ݹJ�@�I�]���֡A�x�W�вy�n������o��e�b�y�ѤW�g�D�A���W9�I���ɡA�����o����7�I�N��y���A��]�O���騮�Ӥ֡C��������F���騮���A�o�S�o�ͨ����{�ɽվ�A��Ӷ��\����p�ɤ~�����e�����ɳ��a�C���۸����U�A�n�����o���M�����e�C<P>
|
857
|
+
�e�Ѧb���N�ɳ��A��X�{�n�������ɮɡA�D����Ӥu��Ԥ�A�N�C��M�����H���ک���ɳ��a���~�C�z�ѬO���n�������ɨ��z�Z�A����L��a���X�ɫo�u���Ӥu�æ��@�ΡA��ܧӤu�]�@�D�ߤ��C<P>
|
858
|
+
�C��ijX�]�X���B�A�C�C��F���ɫe�@�ѱߤW�A�~�{�ɫť��j�Ѥ��ɪ��ijX���n�ƥ��ӽСA�_�h�@�ߤ���i�J��������A�o�i�O�s���B���֨����u���W��v�C<P>
|
859
|
+
<div><table width="214" align="center" border="0" cellpadding="6" cellspacing="0" class="border"><tr><td width="200"><div align="center" id="media_file"><img src="http://uc.udn.com.tw/NEWS/MEDIA/8950901-3554415.jpg?sn=14113529910022"></div></td></tr><tr> <td class="photo_explanation"><span id="media_desc"><span id="media_desc_1">ù�Ť��O���شβy�������̡A�]�O�ߤ@�㦳�j�p��������y���C</span></span><br> <span id="media_producer_1"><span id="media_producer">���t��Ʒ�</span></span></td> </tr> </table></div><P>
|
860
|
+
<!--$--><font color="#0074ad"><B>�{�ɳq������ ù�Ť��������</B></font><!--/$--><P>
|
861
|
+
|
862
|
+
�i�p�X�s�D������X���ɡj<P>
|
863
|
+
|
864
|
+
�b�ȹB����βy���u�u�@���v������ù�Ť��A�e���{�ɳQ�q���i�����ˡA���L�j�P�N�~�C<P>
|
865
|
+
|
866
|
+
�ھڴC����ɡAù�Ť����h���J����A�����˨ä����͡A���L�q�`�O�ɫ�~�|�i��A�b���ɥ����i�}�e�N�����٬O�Ĥ@���J��A�j�|�o��p��Ӫ��n�D�]���L��q�����m�y�Q�������A�u�o����@�ѡC<P>
|
867
|
+
|
868
|
+
�βy�O�o���ȹB�̨��n������W�U���`�����ءA�ðê��P�O�ߤ@�ؼСA���ض��]�Q��w���Y���ĤH�Aù�Ť��O�������ض��}���ߤ@�㦳�j�p����������A�Q�u�S�O���ӡv���G�]������O�H�N�~�C<P>
|
869
|
+
|
870
|
+
|
871
|
+
<div id='ft' style='display:none' align='center'><img src="http://uc.udn.com.tw/NEWS/MEDIA/8950901-3554415.jpg?sn=14113529910022" alt="ù�Ť��O���شβy�������̡A�]�O�ߤ@�㦳�j�p��������y���C / ���t��Ʒ�" ></div>
|
872
|
+
</div>
|
873
|
+
|
874
|
+
|
875
|
+
|
876
|
+
|
877
|
+
|
878
|
+
|
879
|
+
<p class="story"><span id="source_name" class="story">�i2014/09/22 �p�X���j</span><span class="author"><a href="http://udn.com/" target="_blank">@ </a><a href="http://udn.com/" target="_blank">http://udn.com/</a></span></p><P>
|
880
|
+
<style type="text/css">
|
881
|
+
.mpromote { font-family: Arial; font-size: 12pt; margin: 0; padding: 0; font-weight: bold;}
|
882
|
+
A.mpromote:link { color:#ff8000; text-decoration: none; }
|
883
|
+
A.mpromote:visited { color:#ff8000; text-decoration: none;}
|
884
|
+
A.mpromote:hover, A.mpromote:active, A.mpromote:focus { text-decoration: none;}
|
885
|
+
</style>
|
886
|
+
<div id="mpromote" name="mpromote">
|
887
|
+
<b>
|
888
|
+
<SCRIPT language=javascript>
|
889
|
+
|
890
|
+
var url = location.pathname;
|
891
|
+
|
892
|
+
|
893
|
+
if(url.indexOf("NATIONAL/NAT") >= 0 || url.indexOf("DOMESTIC/DOM") >= 0 || url.indexOf("MAINLAND/MAI") >= 0 || url.indexOf("OPINION/OPI") >= 0 || url.indexOf("OPINION/X") >= 0 || url.indexOf("STOCK/STO") >= 0 || url.indexOf("LIFE/LIF") >= 0 || url.indexOf("LIFE/X") >= 0 || url.indexOf("HEALTH/HEA") >= 0 || url.indexOf("SOCIETY/SOC") >= 0 || url.indexOf("SPORTS/SP") >= 0 || url.indexOf("FINANCE/FIN") >= 0 || url.indexOf("WORLD/WOR") >= 0 || url.indexOf("BREAKINGNEWS/BREAK") >= 0){
|
894
|
+
|
895
|
+
Titles = new Array(
|
896
|
+
'<a href="http://udn.com/vote2014/" target=_blank><font color="#ff8000">�E�����n�q�B�C����աB�Ϫ����R�Kudn�E�X�@���|�M�D�A�a���A���@�˪�����[��C</font></a>',
|
897
|
+
'<a href="http://udn.com/vote2014/" target=_blank><font color="#ff8000">�E�擄��H�ڭn��X�i�ﲼ�H�E�X�@���|�M�D�i�D�A�C</font></a>',
|
898
|
+
'<a href="http://udn.com/vote2014/trend" target=_blank><font color="#ff8000">�Eudn�ݿ��|�A�����[��Կ�H�������n�q�Bgoogle�j�M�����ܤơC</font></a>',
|
899
|
+
'<a href="http://udn.com/vote2014/analyze" target=_blank><font color="#ff8000">�E�ź��ܤơB�źչw���B�����ﱡ���R�K���|�M�D�Ϫ����R�ݳo�̡C</font></a>',
|
900
|
+
'<a href="http://udn.com/vote2014/polls" target=_blank><font color="#ff8000">�E�Q���D�Կ�H�������ܤƶܡH�E�X�@���|�M�D�A�jù���j�C����ռƾ����A��@��C</font></a>',
|
901
|
+
'<a href="http://udndata.com/promo/mdn_C/" target=_blank><font color="#ff8000">�E��y����쪩���Ѯw�A�ൣ�u�}Ū���A�쪩���m�i�u�W�d�~���e�C</font></a>',
|
902
|
+
'<a href="http://udndata.com/promo/mdn_C/" target=_blank><font color="#ff8000">�E��y����쪩���Ѯw�A�i������r�d�ߡA��K�ſ�ƽ����U�Ĥl�DzߡC</font></a>',
|
903
|
+
'<a href="http://udndata.com/promo/mdn_C/" target=_blank><font color="#ff8000">�E��y����쪩���Ѯw�A���妳�Ϧ��`���AŪ���Dzy�廴�P�S����C</font></a>',
|
904
|
+
'<a href="http://udndata.com/promo/mdn_C/" target=_blank><font color="#ff8000">�E��y����쪩���Ѯw�A�Ʀ줺�e�Ϥ�íZ�A�Ѯv�ƽҦn����C</font></a>',
|
905
|
+
'<a href="http://udndata.com/promo/mdn_C/" target=_blank><font color="#ff8000">�E��y����쪩���Ѯw�A�[�j�ൣ�y���O�B���i�DzߤO�A�K����f���C</font></a>',
|
906
|
+
'<a href="http://goo.gl/Qsa6Xp" target=_blank><font color="#ff8000">�Eudn News iOS App �a�z�l�r���ײ{��</font></a>',
|
907
|
+
'<a href="http://goo.gl/Qsa6Xp" target=_blank><font color="#ff8000">�E���ͦn���Gudn News iOS App �\Ū�L��M�n�I</font></a>',
|
908
|
+
'<a href="http://goo.gl/Qsa6Xp" target=_blank><font color="#ff8000">�Eudn News iOS App ���z�x�������߰�</font></a>',
|
909
|
+
'<a href="http://goo.gl/Qsa6Xp" target=_blank><font color="#ff8000">�Eudn News iOS App �@�ɩ_�D�l���a</font></a>',
|
910
|
+
'<a href="http://goo.gl/Qsa6Xp" target=_blank><font color="#ff8000">�E���ͦn���Gudn News iOS App �\Ū�L��M�n�I</font></a>');
|
911
|
+
|
912
|
+
}
|
913
|
+
|
914
|
+
|
915
|
+
|
916
|
+
|
917
|
+
|
918
|
+
|
919
|
+
Id = Math.floor(Math.random()*Titles.length);
|
920
|
+
document.write("<font class='mpromote'>"+Titles[Id]+"</font>");
|
921
|
+
</SCRIPT>
|
922
|
+
</b>
|
923
|
+
</div>
|
924
|
+
|
925
|
+
|
926
|
+
|
927
|
+
<!-- inread_spo.htm -->
|
928
|
+
<!-- inread -->
|
929
|
+
<div id="div-inread-ad">
|
930
|
+
<script type="text/javascript">
|
931
|
+
if (typeof(ONEAD) !== "undefined"){
|
932
|
+
ONEAD.cmd = ONEAD.cmd || [];
|
933
|
+
ONEAD.cmd.push(function(){
|
934
|
+
ONEAD_slot('div-inread-ad', 'inread');
|
935
|
+
});
|
936
|
+
}
|
937
|
+
</script>
|
938
|
+
</div>
|
939
|
+
|
940
|
+
<p>
|
941
|
+
<div id="storyetu"></div></td>
|
942
|
+
</tr>
|
943
|
+
<tr>
|
944
|
+
<td><table width="100%" border="0" cellpadding="3" cellspacing="0">
|
945
|
+
<tbody>
|
946
|
+
<tr>
|
947
|
+
|
948
|
+
<!-- chgFontSize javascript -->
|
949
|
+
<script>
|
950
|
+
|
951
|
+
//jQuery(document).ready(function() {
|
952
|
+
jQuery("#fs1").bind("mouseenter",function() {
|
953
|
+
jQuery(this).removeClass("sprite-fontsize_1").addClass("sprite-fontsize_1o");
|
954
|
+
}).bind("click",function() {
|
955
|
+
chgFontSize('1');
|
956
|
+
});
|
957
|
+
|
958
|
+
jQuery("#fs2").bind("mouseenter",function() {
|
959
|
+
jQuery(this).removeClass("sprite-fontsize_2").addClass("sprite-fontsize_2o");
|
960
|
+
}).bind("click",function() {
|
961
|
+
chgFontSize('2');
|
962
|
+
});
|
963
|
+
|
964
|
+
jQuery("#fs3").bind("mouseenter",function() {
|
965
|
+
jQuery(this).removeClass("sprite-fontsize_3").addClass("sprite-fontsize_3o");
|
966
|
+
}).bind("click",function() {
|
967
|
+
chgFontSize('3');
|
968
|
+
});
|
969
|
+
|
970
|
+
jQuery("#fs4").bind("mouseenter",function() {
|
971
|
+
jQuery(this).removeClass("sprite-fontsize_4").addClass("sprite-fontsize_4o");
|
972
|
+
}).bind("click",function() {
|
973
|
+
chgFontSize('4');
|
974
|
+
});
|
975
|
+
|
976
|
+
if (GetCkValue("FontSize")!="") {
|
977
|
+
var fs = GetCkValue("FontSize");
|
978
|
+
|
979
|
+
chgFontSize(fs);
|
980
|
+
}
|
981
|
+
else {
|
982
|
+
var fs = 2;
|
983
|
+
|
984
|
+
chgFontSize(fs);
|
985
|
+
}
|
986
|
+
//});
|
987
|
+
|
988
|
+
|
989
|
+
function GetCkValue( name ) {
|
990
|
+
var dc=document.cookie;
|
991
|
+
var prefix=name+"=";
|
992
|
+
var begin=dc.indexOf("; "+prefix);
|
993
|
+
|
994
|
+
if (begin==-1) begin=dc.indexOf(prefix);
|
995
|
+
else begin+=2;
|
996
|
+
if (begin==-1) return "";
|
997
|
+
var end=document.cookie.indexOf(";",begin);
|
998
|
+
if(end==-1) end=dc.length;
|
999
|
+
return dc.substring(begin+prefix.length,end);
|
1000
|
+
}
|
1001
|
+
|
1002
|
+
function setCookie(name,value,expiresOrNot,path,domain,secure,flag){
|
1003
|
+
var url=document.URL;
|
1004
|
+
var howLong=new Date();
|
1005
|
+
howLong.setFullYear(howLong.getFullYear()+1);
|
1006
|
+
var curCookie=name+"="+escape(value) +
|
1007
|
+
((expiresOrNot)?";expires="+howLong.toGMTString():"") +
|
1008
|
+
((path)?";path="+path:"") +
|
1009
|
+
((domain)?";domain="+domain:"") +
|
1010
|
+
((secure)?";secure":"");
|
1011
|
+
document.cookie=curCookie;
|
1012
|
+
if(flag!="null")history.go(0);
|
1013
|
+
}
|
1014
|
+
|
1015
|
+
function chgFontImg(size) {
|
1016
|
+
|
1017
|
+
jQuery("#fs4").removeClass("sprite-fontsize_4o").addClass("sprite-fontsize_4");
|
1018
|
+
jQuery("#fs3").removeClass("sprite-fontsize_3o").addClass("sprite-fontsize_3");
|
1019
|
+
jQuery("#fs2").removeClass("sprite-fontsize_2o").addClass("sprite-fontsize_2");
|
1020
|
+
jQuery("#fs1").removeClass("sprite-fontsize_1o").addClass("sprite-fontsize_1");
|
1021
|
+
|
1022
|
+
jQuery("#fs1").bind("mouseleave",function() {
|
1023
|
+
jQuery(this).removeClass("sprite-fontsize_1o").addClass("sprite-fontsize_1");
|
1024
|
+
});
|
1025
|
+
|
1026
|
+
jQuery("#fs2").bind("mouseleave",function() {
|
1027
|
+
jQuery(this).removeClass("sprite-fontsize_2o").addClass("sprite-fontsize_2");
|
1028
|
+
});
|
1029
|
+
|
1030
|
+
jQuery("#fs3").bind("mouseleave",function() {
|
1031
|
+
jQuery(this).removeClass("sprite-fontsize_3o").addClass("sprite-fontsize_3");
|
1032
|
+
});
|
1033
|
+
|
1034
|
+
jQuery("#fs4").bind("mouseleave",function() {
|
1035
|
+
jQuery(this).removeClass("sprite-fontsize_4o").addClass("sprite-fontsize_4");
|
1036
|
+
});
|
1037
|
+
|
1038
|
+
if (size == "4") {
|
1039
|
+
jQuery("#fs4").addClass("sprite-fontsize_4o");
|
1040
|
+
|
1041
|
+
jQuery("#fs4").bind("mouseleave",function() {
|
1042
|
+
jQuery(this).addClass("sprite-fontsize_4o");
|
1043
|
+
});
|
1044
|
+
}
|
1045
|
+
if (size == "3") {
|
1046
|
+
jQuery("#fs3").addClass("sprite-fontsize_3o");
|
1047
|
+
|
1048
|
+
jQuery("#fs3").bind("mouseleave",function() {
|
1049
|
+
jQuery(this).addClass("sprite-fontsize_3o");
|
1050
|
+
});
|
1051
|
+
}
|
1052
|
+
if (size == "2") {
|
1053
|
+
jQuery("#fs2").addClass("sprite-fontsize_2o");
|
1054
|
+
|
1055
|
+
jQuery("#fs2").bind("mouseleave",function() {
|
1056
|
+
jQuery(this).addClass("sprite-fontsize_2o");
|
1057
|
+
});
|
1058
|
+
}
|
1059
|
+
if (size == "1") {
|
1060
|
+
jQuery("#fs1").addClass("sprite-fontsize_1o");
|
1061
|
+
|
1062
|
+
jQuery("#fs1").bind("mouseleave",function() {
|
1063
|
+
jQuery(this).addClass("sprite-fontsize_1o");
|
1064
|
+
});
|
1065
|
+
}
|
1066
|
+
|
1067
|
+
}
|
1068
|
+
|
1069
|
+
function chgFontSize(size) {
|
1070
|
+
if (size == "4") {
|
1071
|
+
jQuery("div#story").css("font-size","20px");
|
1072
|
+
jQuery("div#story").css("line-height","190%");
|
1073
|
+
chgFontImg("4");
|
1074
|
+
setCookie("FontSize","4",false,"/","","","null");
|
1075
|
+
}
|
1076
|
+
else if (size == "3") {
|
1077
|
+
jQuery("div#story").css("font-size","18px");
|
1078
|
+
jQuery("div#story").css("line-height","190%");
|
1079
|
+
chgFontImg("3");
|
1080
|
+
setCookie("FontSize","3",false,"/","","","null");
|
1081
|
+
}
|
1082
|
+
else if (size == "2") {
|
1083
|
+
jQuery("div#story").css("font-size","15px");
|
1084
|
+
jQuery("div#story").css("line-height","190%");
|
1085
|
+
chgFontImg("2");
|
1086
|
+
setCookie("FontSize","2",false,"/","","","null");
|
1087
|
+
}
|
1088
|
+
else {
|
1089
|
+
jQuery("div#story").css("font-size","13px");
|
1090
|
+
jQuery("div#story").css("line-height","190%");
|
1091
|
+
chgFontImg("1");
|
1092
|
+
setCookie("FontSize","1",false,"/","","","null");
|
1093
|
+
}
|
1094
|
+
}
|
1095
|
+
|
1096
|
+
</script>
|
1097
|
+
|
1098
|
+
<!-- dignews forum -->
|
1099
|
+
<script>
|
1100
|
+
//jQuery(document).ready(function() {
|
1101
|
+
// jQuery(".content_hot").append("<div id='dignews'></div>");
|
1102
|
+
//});
|
1103
|
+
|
1104
|
+
function rId() {
|
1105
|
+
var url0=window.location.toString();
|
1106
|
+
var ary0 = url0.split("?");
|
1107
|
+
var url = ary0[0];
|
1108
|
+
var ary=url.split("/")
|
1109
|
+
var page=ary[ary.length-1];
|
1110
|
+
if (page.indexOf("_") != -1) {
|
1111
|
+
_ary=page.split("_");
|
1112
|
+
var DigId=_ary[0];
|
1113
|
+
//for seo
|
1114
|
+
if ( DigId.indexOf("-") > 0 ) {
|
1115
|
+
var aaas = DigId.match(/(.*)-(\d*)$/);
|
1116
|
+
DigId = aaas[2];
|
1117
|
+
}
|
1118
|
+
}
|
1119
|
+
else {
|
1120
|
+
var ary2=page.split(".");
|
1121
|
+
var DigId=ary2[ary2.length-2];
|
1122
|
+
// var DigId=ary2[0];
|
1123
|
+
if ( DigId.indexOf("-") > 0 ) {
|
1124
|
+
var aaas = DigId.match(/(.*)-(\d*)$/);
|
1125
|
+
DigId = aaas[2];
|
1126
|
+
}
|
1127
|
+
}
|
1128
|
+
|
1129
|
+
return DigId;
|
1130
|
+
}
|
1131
|
+
|
1132
|
+
function InitDig(page) {
|
1133
|
+
DigId = rId();
|
1134
|
+
//jQuery(".content_hot").append("<div id='dignews'></div>");
|
1135
|
+
jQuery(".fbc").append("<div id='dignews'></div>");
|
1136
|
+
jQuery("#dignews").html("<center><img src='http://s.udn.com.tw/images/forumimg/images/loading2.gif?1x'><br /><br /><font style='font-weight:bolder;font-size:16px'>�Q�װ϶����J��</font></center>");
|
1137
|
+
|
1138
|
+
if (page == "") page = 1;
|
1139
|
+
setTimeout("ShowDigContent("+DigId+",'b',"+page+")",100);
|
1140
|
+
ShowDigCount();
|
1141
|
+
}
|
1142
|
+
|
1143
|
+
function ShowDig(page) {
|
1144
|
+
DigId = rId();
|
1145
|
+
|
1146
|
+
jQuery("#dignews").html("<center><img src=''http://s.udn.com.tw/images/forumimg/images/loading2.gif?xx'><br /><br /><font style='font-weight:bolder;font-size:16px'>�Q�װ϶����J��</font></center>");
|
1147
|
+
|
1148
|
+
if (page == "") page = 1;
|
1149
|
+
setTimeout("ShowDigContent("+DigId+",'a',"+page+")",100);
|
1150
|
+
}
|
1151
|
+
|
1152
|
+
function ShowDigCount() {
|
1153
|
+
DigId = rId();
|
1154
|
+
|
1155
|
+
var htmlContent = jQuery.ajax({
|
1156
|
+
url: "/forum/postn.jsp?news_id="+DigId,
|
1157
|
+
async: true,
|
1158
|
+
success: function(html){
|
1159
|
+
jQuery("#postn").html(html);
|
1160
|
+
jQuery("#postn2").html(html);
|
1161
|
+
},
|
1162
|
+
error: function() {}
|
1163
|
+
});
|
1164
|
+
|
1165
|
+
}
|
1166
|
+
|
1167
|
+
function ef() {
|
1168
|
+
DigId = rId();
|
1169
|
+
window.location.href="http://forum.udn.com/forum/letter.jsp?newsid="+DigId;
|
1170
|
+
}
|
1171
|
+
function ShowDigContent(DigId,TUrl,page) {
|
1172
|
+
//var htmlContent =
|
1173
|
+
jQuery.ajax({
|
1174
|
+
url: "/forum/post"+TUrl+".jsp?news_id="+DigId+"¤tPage="+page,
|
1175
|
+
async: true,
|
1176
|
+
success: function(html){
|
1177
|
+
jQuery("#dignews").hide();
|
1178
|
+
jQuery("#dignews").html(html);
|
1179
|
+
jQuery("#dignews").toggle('slow');
|
1180
|
+
},
|
1181
|
+
error: function() {}
|
1182
|
+
});
|
1183
|
+
// �n�P�_ success �~SHOW or IE6 will hang
|
1184
|
+
//.responseText;
|
1185
|
+
}
|
1186
|
+
|
1187
|
+
jQuery(document).ready(function() {
|
1188
|
+
if ( window.location.href.indexOf("/ENTERTAINMENT/") == -1 ) {
|
1189
|
+
ShowDigCount();
|
1190
|
+
if ( $jq.browser.msie && $jq.browser.version == '6.0' ) {
|
1191
|
+
// InitDig(1);
|
1192
|
+
}else {InitDig(1); }
|
1193
|
+
}
|
1194
|
+
});
|
1195
|
+
</script>
|
1196
|
+
|
1197
|
+
<SCRIPT language=JavaScript>
|
1198
|
+
<!--
|
1199
|
+
function MM_openBrWindow(theURL,winName,features) { //v2.0
|
1200
|
+
window.open(theURL,winName,features);
|
1201
|
+
}
|
1202
|
+
String.prototype.trim = function() {
|
1203
|
+
return this.replace(/^\s+|\s+$/g,"");
|
1204
|
+
}
|
1205
|
+
String.prototype.ltrim = function() {
|
1206
|
+
return this.replace(/^\s+/,"");
|
1207
|
+
}
|
1208
|
+
String.prototype.rtrim = function() {
|
1209
|
+
return this.replace(/\s+$/,"");
|
1210
|
+
}
|
1211
|
+
function openWin3(url) {
|
1212
|
+
window.open(url,'','');
|
1213
|
+
}
|
1214
|
+
function searchKeyWord() {
|
1215
|
+
var txt = '';
|
1216
|
+
if (window.getSelection) {
|
1217
|
+
txt = window.getSelection();
|
1218
|
+
} else if (document.getSelection) {
|
1219
|
+
txt = document.getSelection();
|
1220
|
+
} else if (document.selection) {
|
1221
|
+
txt = document.selection.createRange().text;
|
1222
|
+
}
|
1223
|
+
if (txt == "")
|
1224
|
+
window.open('http://data.udn.com/images/news2data/history.html','history','height=580,width=500,top=0,left=0,toolbar=no,menubar=no,scrollbars=no, resizable=no,location=no, status=no');
|
1225
|
+
else {
|
1226
|
+
if(confirm("�z�n�d�ߪ�����r�O(" + txt+")"))
|
1227
|
+
openWin3("http://data.udn.com/data/Search?Keywords="+txt);
|
1228
|
+
}
|
1229
|
+
}
|
1230
|
+
//-->
|
1231
|
+
</SCRIPT>
|
1232
|
+
<!-- by ae -->
|
1233
|
+
<td style="display:none" class="oldf" width="14%" nowrap="nowrap"></td>
|
1234
|
+
|
1235
|
+
|
1236
|
+
|
1237
|
+
|
1238
|
+
</tr>
|
1239
|
+
</tbody>
|
1240
|
+
</table></td>
|
1241
|
+
</tr>
|
1242
|
+
<tr>
|
1243
|
+
<td><div id="other" style="display:none">
|
1244
|
+
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
1245
|
+
<tr>
|
1246
|
+
<td width="13%" nowrap><span class="t13b">�����s�D�G</span></td>
|
1247
|
+
<td width="87%">
|
1248
|
+
|
1249
|
+
<select name="jumpMenu" class="related" id="jumpMenu" onChange="MM_jumpMenu('parent',this,0)">
|
1250
|
+
<option selected>�п��---<���t�ȹB>�����s�D</option>
|
1251
|
+
|
1252
|
+
<option value="8954407.shtml">���بk�x�p�t���ħJ ���ԭV�d</option>
|
1253
|
+
|
1254
|
+
<option value="8954085.shtml">�βy�����y�I�x������ ���ؾԮ���վ�</option>
|
1255
|
+
|
1256
|
+
<option value="8954099.shtml">�βy��5��KO����m�L �n�����N�ԤO</option>
|
1257
|
+
|
1258
|
+
<option value="8954074.shtml">���y�k������M�m�Y�� ���������</option>
|
1259
|
+
|
1260
|
+
<option value="8954110.shtml">��¡���h�P�E ���ҲE�����@�����x�F</option>
|
1261
|
+
|
1262
|
+
<option value="8954126.shtml">��a���X�G�Y�L �����ٹܪ���</option>
|
1263
|
+
|
1264
|
+
<option value="8954138.shtml">�\�Q�b�}���� ��ȹB������</option>
|
1265
|
+
|
1266
|
+
<option value="8954106.shtml">���P�l�H�� �����Ц^��</option>
|
1267
|
+
|
1268
|
+
<option value="8953180.shtml">�βy���ڻ������� �m�Ӥ��ȫn����</option>
|
1269
|
+
|
1270
|
+
<option value="8953176.shtml">�βy�����j�D�j�� ���f�ıj�մ��w</option>
|
1271
|
+
|
1272
|
+
<option value="8953246.shtml">�ۥѨ����k�l����l�v�� �L�n����</option>
|
1273
|
+
|
1274
|
+
<option value="8953249.shtml">�|�������ҲE�a�� �̶}�ߪ���4�W</option>
|
1275
|
+
|
1276
|
+
<option value="8946934.shtml">���t�ȹB �βy�ɵ{���༽��</option>
|
1277
|
+
|
1278
|
+
<option value="8953250.shtml">�вy���n���ŽվԳN �k�Υu���</option>
|
1279
|
+
|
1280
|
+
<option value="8953247.shtml">���y���c�۾������j�� �k��8�j��B</option>
|
1281
|
+
|
1282
|
+
<option value="8953240.shtml">���y�����°t �k�Χ��ɱ��</option>
|
1283
|
+
|
1284
|
+
<option value="8953321.shtml">�ȹB���P�]�P���ѭ��I�v��</option>
|
1285
|
+
|
1286
|
+
<option value="8953248.shtml">�x�y�����ħJ�k�x�G�N�� ���j�I����</option>
|
1287
|
+
|
1288
|
+
<option value="8953167.shtml">�βy�����@��a�� �n���y�g�m��</option>
|
1289
|
+
|
1290
|
+
<option value="8953168.shtml">�βy������g���ɰ}�e ���~��m�L</option>
|
1291
|
+
|
1292
|
+
</select><!--for next and prev -->
|
1293
|
+
<div style="display:none;"><input id="rac" type="text" value="21"></div>
|
1294
|
+
|
1295
|
+
|
1296
|
+
</td>
|
1297
|
+
</tr>
|
1298
|
+
</table>
|
1299
|
+
</div>
|
1300
|
+
</td>
|
1301
|
+
</tr>
|
1302
|
+
<!-- start of facebook API -->
|
1303
|
+
<tr>
|
1304
|
+
<td >
|
1305
|
+
<link href="http://s.udn.com.tw/2010MAIN/css/social.css?4" rel="stylesheet" type="text/css">
|
1306
|
+
<script src='https://apis.google.com/js/plusone.js'></script>
|
1307
|
+
<script src='http://s.udn.com.tw/images/TBfolder/js/bookmark_v2.js?v=3'></script>
|
1308
|
+
<div class="social_bar" >
|
1309
|
+
<div id="share">
|
1310
|
+
<ul>
|
1311
|
+
<li class="fb"><a href="javascript:addFacebook();">facebook</a></li>
|
1312
|
+
<li class="plurk"><a href="javascript:addPlurk();">plurk</a></li>
|
1313
|
+
<li class="twitter"><a href="javascript:addTwitter();">twitter</a></li>
|
1314
|
+
</ul>
|
1315
|
+
</div>
|
1316
|
+
<ul>
|
1317
|
+
<li class="history"><a href="javascript:searchKeyWord();" title="���v�s�D">���v�s�D</a></li>
|
1318
|
+
<li class="sendmail"><a href="javascript:ef();" title="��H">��H</a></li>
|
1319
|
+
<li class="print"><a href="javascript:fpr();" title="�C�L">�C�L</a></li>
|
1320
|
+
<script>
|
1321
|
+
if ( window.location.href.indexOf("/ENTERTAINMENT/") == -1) {
|
1322
|
+
document.write("<li class=\"discuss\"><a href=\"#comments\" title=\"�Q��\">�Q��</a></li>");
|
1323
|
+
document.write("<li class=\"dialog\"><div class=\"dialog_arr\"></div><div class=\"dialog_number\"><span class=\"contribution_noticetitle\" style=\"color:black\" id=\"postn\"> </span></div></li>");
|
1324
|
+
}
|
1325
|
+
</script>
|
1326
|
+
<li>
|
1327
|
+
<script>
|
1328
|
+
//var aurl=window.location.href;
|
1329
|
+
//var aurl="http://forum.udn.com/forum/NewsLetter/NewsPreview?Encode=big5&NewsID="+rId();
|
1330
|
+
var aurl=jQuery('meta[property="og:url"]').attr('content'); //20130711
|
1331
|
+
aurl=aurl+"?ch=fb_like";
|
1332
|
+
var ii=aurl.indexOf("#");
|
1333
|
+
if ( ii != -1 ) {
|
1334
|
+
aurl=aurl.substring(0,ii);
|
1335
|
+
}
|
1336
|
+
var ii=aurl.indexOf("?");
|
1337
|
+
if ( ii != -1 ) {
|
1338
|
+
aurl=aurl.substring(0,ii);
|
1339
|
+
}
|
1340
|
+
if ( window.location.href.indexOf("Prev") >= 0 ) {}
|
1341
|
+
else{
|
1342
|
+
document.write("<iframe src=\"http://www.facebook.com/plugins/like.php?href="+encodeURIComponent(aurl)+"&layout=button_count&locale=zh_TW&show_faces=true&width=90&action=like&font=verdana&colorscheme=light&height=80\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:100px; height:22px;\" allowTransparency=\"true\"></iframe>");
|
1343
|
+
}
|
1344
|
+
</script>
|
1345
|
+
</li>
|
1346
|
+
<li>
|
1347
|
+
<g:plusone size="medium"></g:plusone>
|
1348
|
+
</li>
|
1349
|
+
</ul>
|
1350
|
+
|
1351
|
+
</div>
|
1352
|
+
|
1353
|
+
</td>
|
1354
|
+
</tr>
|
1355
|
+
<style>
|
1356
|
+
#news_area dd{
|
1357
|
+
text-align:left;
|
1358
|
+
}
|
1359
|
+
</style>
|
1360
|
+
<script>
|
1361
|
+
//jQuery(window).load(function(){
|
1362
|
+
|
1363
|
+
if ( window.location.href.indexOf("Prev") >= 0 ) {
|
1364
|
+
if ( console ) console.log("Prev Mode!");
|
1365
|
+
}else {
|
1366
|
+
jQuery(document).ready(function(){
|
1367
|
+
//if ( console ) console.log("Normal Mode!");
|
1368
|
+
//�W�[�Ϥ��� ���o �Ҧ��Ϫ����} 20130627
|
1369
|
+
jQuery(".photo_explanation").css("display","block");
|
1370
|
+
jQuery(".photo_explanation").css("position","relative");
|
1371
|
+
var udnpic = new Array();
|
1372
|
+
var picdesc = new Array();
|
1373
|
+
var picid=0;
|
1374
|
+
|
1375
|
+
jQuery('div[id="media_file"]').each(function(){
|
1376
|
+
udnpic[picid]=jQuery(this).children('img').attr('src');
|
1377
|
+
if (udnpic[picid].indexOf("../..")>=0)
|
1378
|
+
udnpic[picid]=udnpic[picid].replace("../..","http://udn.com/NEWS");
|
1379
|
+
picid++;
|
1380
|
+
});
|
1381
|
+
picid=0;
|
1382
|
+
jQuery('span[id="media_desc_1"]').each(function(){
|
1383
|
+
picdesc[picid]=jQuery(this).text();
|
1384
|
+
picid++;
|
1385
|
+
});
|
1386
|
+
//jQuery("#media_producer_1").each(function(){
|
1387
|
+
picid=0;
|
1388
|
+
jQuery('span[id="media_producer_1"]').each(function(){
|
1389
|
+
var producer=jQuery(this).html();
|
1390
|
+
fburl="http://www.facebook.com/sharer.php?s=100&p[images][0]="+udnpic[picid]+"&p[url]="+aurl+"?ch=fb_share_photo&p[summary]="+encodeURIComponent(picdesc[picid])+"&p[title]="+encodeURIComponent(document.title);
|
1391
|
+
fbshare="<a href='"+fburl+"' target='_blank'><img width='49' height='20' style='float:right; border:0;position:absolute;bottom:5px;right:5px;' src='http://s.udn.com.tw/2010MAIN/img/fb_share.png'></a>";
|
1392
|
+
//alert("test");
|
1393
|
+
producer=producer+fbshare;
|
1394
|
+
|
1395
|
+
jQuery(this).html(producer);
|
1396
|
+
picid++;
|
1397
|
+
});
|
1398
|
+
})
|
1399
|
+
}//else end
|
1400
|
+
</script>
|
1401
|
+
|
1402
|
+
<!-- end of facebook API -->
|
1403
|
+
<!-- start of ����-������r -->
|
1404
|
+
<!-- end of ����-������r -->
|
1405
|
+
<!--start of trackback -->
|
1406
|
+
<tr>
|
1407
|
+
<td background="http://s.udn.com.tw/2010/images/linedot.gif" width="100%"><img src="http://s.udn.com.tw/2010/images/linedot.gif" height="1" width="1"></td>
|
1408
|
+
</tr>
|
1409
|
+
<!--end of trackback-->
|
1410
|
+
<tr>
|
1411
|
+
<td>
|
1412
|
+
<table border="0" cellpadding="1" cellspacing="0" width="100%">
|
1413
|
+
<tbody>
|
1414
|
+
<tr>
|
1415
|
+
<td width="97%"><!-- start of �t�ת��� --></td>
|
1416
|
+
</tr>
|
1417
|
+
<tr>
|
1418
|
+
<td align="center"><table border="0" cellpadding="0" cellspacing="0">
|
1419
|
+
<tbody>
|
1420
|
+
<tr>
|
1421
|
+
<td>
|
1422
|
+
|
1423
|
+
<script>
|
1424
|
+
var etuaid="cm-sports-"+rId();
|
1425
|
+
if (! (RN)) {
|
1426
|
+
var RN = new String (Math.random());
|
1427
|
+
var RNS = RN.substring (2, 11);
|
1428
|
+
}
|
1429
|
+
document.write('<iframe id="etuFrame" src="http://shopping.udn.com/mall/cus/cat/OutWebAd.do?dc_btn_0=udnCom&kdid=O08-E&htmlTag=true&sn='+RNS+'&etuaid='+etuaid+'" width="550" height="300" scrolling="no" frameborder="0" allowtransparency="true"></iframe>');
|
1430
|
+
</script>
|
1431
|
+
|
1432
|
+
<div id="adsense" style="width:550px;table-layout: fixed;word-wrap: break-word; OVERFLOW: hidden" >
|
1433
|
+
<script type="text/javascript" src="http://udn.com/adpinline/ADmediaJS/udn_SPO.js"></script>
|
1434
|
+
</div>
|
1435
|
+
|
1436
|
+
|
1437
|
+
|
1438
|
+
|
1439
|
+
</td>
|
1440
|
+
</tr>
|
1441
|
+
</tbody>
|
1442
|
+
</table></td>
|
1443
|
+
</tr>
|
1444
|
+
<!-- end of �t�ת��� -->
|
1445
|
+
</tbody>
|
1446
|
+
</table></td>
|
1447
|
+
</tr>
|
1448
|
+
<tr>
|
1449
|
+
<td><div>
|
1450
|
+
<table border="0" cellpadding="1" cellspacing="0" width="100%">
|
1451
|
+
<tbody>
|
1452
|
+
<tr>
|
1453
|
+
<td>
|
1454
|
+
|
1455
|
+
|
1456
|
+
<!--
|
1457
|
+
<script language="JavaScript" src="/NEWS/js/simpleajax.js"></script>
|
1458
|
+
<script language="JavaScript" src="/NEWS/js/submitgrading.js"></script>
|
1459
|
+
-->
|
1460
|
+
<DIV class=bg_homeitem>
|
1461
|
+
<table width="530" border="0" cellspacing="0" cellpadding="0">
|
1462
|
+
<tr><td>
|
1463
|
+
<img height=14 src="http://s.udn.com.tw/1024MAIN/img/point_homeitem.gif" width=10> <span class="t13b"> �s�D�y��</span>
|
1464
|
+
<span class="t11"><font color="#828282">(��U�A��o�h�s�D���Pı)</font></span>
|
1465
|
+
</td>
|
1466
|
+
<td><div align="right"><img src="http://s.udn.com.tw/1024MAIN/img/arr_4.gif" width="9" height="9" /><span class="t11"><a href="http://dignews.udn.com/forum/post.jsp?news_id=8950901&view=1&face=-1"><font color="#828282">�����ݵ��G</font></a></span></div> </td>
|
1467
|
+
</tr>
|
1468
|
+
</table>
|
1469
|
+
</DIV>
|
1470
|
+
<DIV class=content_hot>
|
1471
|
+
<form NAME="grad" action="http://dignews.udn.com/forum/post.jsp" method="POST" onSubmit="javascript:return submitGrading(document.grad);">
|
1472
|
+
<table width="539" border="0" cellspacing="3" cellpadding="0">
|
1473
|
+
<tr>
|
1474
|
+
<td height="34" background="http://s.udn.com.tw/1024MAIN/img/face_icon3.gif"> <table width ="100%" border="0" cellpadding="0" cellspacing="5">
|
1475
|
+
<tr>
|
1476
|
+
<td><input name="grade" type="radio" value="10" onclick="javascript:loadFace(document.grad);"></td>
|
1477
|
+
<td><input name="grade" type="radio" value="11" onclick="javascript:loadFace(document.grad);"></td>
|
1478
|
+
<td><input name="grade" type="radio" value="12" onclick="javascript:loadFace(document.grad);"></td>
|
1479
|
+
<td><input name="grade" type="radio" value="1" onclick="javascript:loadFace(document.grad);"></td>
|
1480
|
+
<td><input name="grade" type="radio" value="9" onclick="javascript:loadFace(document.grad);"></td>
|
1481
|
+
<td><input name="grade" type="radio" value="7" onclick="javascript:loadFace(document.grad);"></td>
|
1482
|
+
<td><input name="grade" type="radio" value="13" onclick="javascript:loadFace(document.grad);"></td>
|
1483
|
+
<td><input name="grade" type="radio" value="14" onclick="javascript:loadFace(document.grad);"></td>
|
1484
|
+
<td><input name="grade" type="radio" value="8" onclick="javascript:loadFace(document.grad);"></td>
|
1485
|
+
<td><input name="grade" type="radio" value="15" onclick="javascript:loadFace(document.grad);"></td>
|
1486
|
+
</tr>
|
1487
|
+
</table></td>
|
1488
|
+
</tr>
|
1489
|
+
</table>
|
1490
|
+
<input type = "hidden" name = "actionType" value = "FACE_VOTE">
|
1491
|
+
<input type = "hidden" name = "news_id" value = "8950901">
|
1492
|
+
<div id="gradingarea"></div>
|
1493
|
+
</form>
|
1494
|
+
</DIV>
|
1495
|
+
|
1496
|
+
|
1497
|
+
</td>
|
1498
|
+
</tr>
|
1499
|
+
</tbody>
|
1500
|
+
</table>
|
1501
|
+
</div>
|
1502
|
+
<br></td>
|
1503
|
+
</tr>
|
1504
|
+
|
1505
|
+
<!-- start of facebook comment -->
|
1506
|
+
<tr><td>
|
1507
|
+
<div class="story_categpry_title" style="background-image: url("http://s.udn.com.tw/2010/images/list_bg.gif");" align="center"><a href="#" name="_fb_comments" style="color: rgb(255, 255, 255);">Facebook �^ ��</a></div>
|
1508
|
+
<script type="text/javascript">
|
1509
|
+
//jQuery(window).load(function(){
|
1510
|
+
jQuery(document).ready(function(){
|
1511
|
+
//if (window.navigator.userAgent.indexOf("MSIE")>=1) {
|
1512
|
+
jQuery(window).scroll(function(){
|
1513
|
+
jQuery('#fbc_loading').hide();
|
1514
|
+
jQuery('.fbc').show();
|
1515
|
+
//for 20131025 fb bug iframe with wrong
|
1516
|
+
jQuery('.fb_ltr').css("width","100%");
|
1517
|
+
|
1518
|
+
(function(d, s, id) {
|
1519
|
+
var js, fjs = d.getElementsByTagName(s)[0];
|
1520
|
+
if (d.getElementById(id)) {return;}
|
1521
|
+
js = d.createElement(s); js.id = id;
|
1522
|
+
rv=0;
|
1523
|
+
if (navigator.appName == 'Microsoft Internet Explorer') {
|
1524
|
+
var ua = navigator.userAgent;
|
1525
|
+
var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
|
1526
|
+
if (re.test(ua) != null){
|
1527
|
+
rv = parseFloat( RegExp.$1 );
|
1528
|
+
}
|
1529
|
+
}
|
1530
|
+
if (navigator.appVersion.indexOf("Windows NT 5.1")>0 && (rv==7 || rv==6) ){
|
1531
|
+
jQuery('.story_categpry_title:first').hide();
|
1532
|
+
}
|
1533
|
+
else{
|
1534
|
+
js.src = "//connect.facebook.net/zh_TW/all.js#xfbml=1";
|
1535
|
+
fjs.parentNode.insertBefore(js, fjs);
|
1536
|
+
}
|
1537
|
+
}(document, 'script', 'facebook-jssdk'));
|
1538
|
+
|
1539
|
+
});
|
1540
|
+
//}
|
1541
|
+
})
|
1542
|
+
</script>
|
1543
|
+
<div id="fbc_loading" style="font-size:16px;font-weight:bold;">Facebook�^�����J��</div>
|
1544
|
+
<div class="fbc" style="display:none">
|
1545
|
+
|
1546
|
+
<script type="text/javascript">
|
1547
|
+
//var aurl=window.location.href;
|
1548
|
+
var aurl=jQuery('meta[property="og:url"]').attr('content'); //20130711
|
1549
|
+
//var aurl="http://forum.udn.com/forum/NewsLetter/NewsPreview?Encode=big5&NewsID="+rId();
|
1550
|
+
var ii=aurl.indexOf("#");
|
1551
|
+
if ( ii != -1 ) {
|
1552
|
+
aurl=aurl.substring(0,ii);
|
1553
|
+
}
|
1554
|
+
var ii=aurl.indexOf("?");
|
1555
|
+
if ( ii != -1 ) {
|
1556
|
+
aurl=aurl.substring(0,ii);
|
1557
|
+
}
|
1558
|
+
|
1559
|
+
document.write("<div class=\"fb-comments\" data-href=\""+aurl+"\" data-num-posts=\"5\" data-width=\"100%\"></div><div id=\"fb-root\"></div>");
|
1560
|
+
</script>
|
1561
|
+
|
1562
|
+
<script>
|
1563
|
+
//(function(d, s, id) {
|
1564
|
+
// var js, fjs = d.getElementsByTagName(s)[0];
|
1565
|
+
// if (d.getElementById(id)) {return;}
|
1566
|
+
// js = d.createElement(s); js.id = id;
|
1567
|
+
// rv=0;
|
1568
|
+
// if (navigator.appName == 'Microsoft Internet Explorer') {
|
1569
|
+
// var ua = navigator.userAgent;
|
1570
|
+
// var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
|
1571
|
+
// if (re.test(ua) != null){
|
1572
|
+
// rv = parseFloat( RegExp.$1 );
|
1573
|
+
// }
|
1574
|
+
// }
|
1575
|
+
// if (navigator.appVersion.indexOf("Windows NT 5.1")>0 && (rv==7 || rv==6) ){
|
1576
|
+
// jQuery('.story_categpry_title:first').hide();
|
1577
|
+
// }
|
1578
|
+
// else{
|
1579
|
+
// js.src = "//connect.facebook.net/zh_TW/all.js#xfbml=1";
|
1580
|
+
// fjs.parentNode.insertBefore(js, fjs);
|
1581
|
+
// }
|
1582
|
+
//}(document, 'script', 'facebook-jssdk'));
|
1583
|
+
</script>
|
1584
|
+
|
1585
|
+
</div>
|
1586
|
+
|
1587
|
+
|
1588
|
+
</td></tr>
|
1589
|
+
|
1590
|
+
<!-- end of facebook comment -->
|
1591
|
+
|
1592
|
+
|
1593
|
+
<tr>
|
1594
|
+
<td><div align="center">
|
1595
|
+
<iframe src="/2010/BD/sports_bd.html" name="ad" width="540" height="250" scrolling="no" frameborder="no"></iframe>
|
1596
|
+
</div></td>
|
1597
|
+
</tr>
|
1598
|
+
<tr>
|
1599
|
+
<!--�s�D���W�D google 468x60 �}�l-->
|
1600
|
+
<td><div align="center">
|
1601
|
+
<iframe src="/SSI/AD/googleAd468x60.html" width="473" height="70" scrolling="no" frameborder="0" allowtransparency="true"></iframe></div></td>
|
1602
|
+
<!--�s�D���W�D google 468x60 ����-->
|
1603
|
+
</tr>
|
1604
|
+
</tbody>
|
1605
|
+
</table></td>
|
1606
|
+
</tr>
|
1607
|
+
</tbody></table></td>
|
1608
|
+
</tr>
|
1609
|
+
</tbody></table></td>
|
1610
|
+
</tr>
|
1611
|
+
</tbody></table></td>
|
1612
|
+
<td height="100%" valign="top" width="240"><table border="0" cellpadding="0" cellspacing="0" width="100%">
|
1613
|
+
<tbody><tr>
|
1614
|
+
<td>
|
1615
|
+
<iframe src="/2010/AD/SPORTS_240X400.html" width="240" height="400" scrolling="no" frameborder="0" allowtransparency="true"></iframe>
|
1616
|
+
</td>
|
1617
|
+
</tr>
|
1618
|
+
<tr>
|
1619
|
+
<td><img src="http://s.udn.com.tw/2010/images/spacer_002.gif" height="10" width="10"></td>
|
1620
|
+
</tr>
|
1621
|
+
<tr>
|
1622
|
+
<td>
|
1623
|
+
<iframe src="/2010/AD/SPORTS_240X700_ROS.html" width="240" height="660" scrolling="no" frameborder="0" allowtransparency="true"></iframe>
|
1624
|
+
</td>
|
1625
|
+
</tr>
|
1626
|
+
<!--FACEBOOK ACTIVITY SSI�}�l-->
|
1627
|
+
<!-- begin facebook activity -->
|
1628
|
+
<tr><td>
|
1629
|
+
<link href="http://s.udn.com.tw/2010MAIN/css/SpryCollapsiblePanel.css" rel="stylesheet" type="text/css">
|
1630
|
+
<script>
|
1631
|
+
var puri=location.pathname;
|
1632
|
+
if (puri.indexOf("ENTERTAINMENT")>0 ){
|
1633
|
+
document.write("<link href='http://s.udn.com.tw/2010MAIN/css/SpryTabbedPanels_pink.css' rel='stylesheet' type='text/css'>");
|
1634
|
+
}else if (puri.indexOf("FINANCE")>0 || puri.indexOf("STOCK")>0 || puri.indexOf("FUND")>0){
|
1635
|
+
document.write("<link href='http://s.udn.com.tw/2010MAIN/css/SpryTabbedPanels_yellow.css' rel='stylesheet' type='text/css'>");
|
1636
|
+
}else{
|
1637
|
+
document.write("<link href='http://s.udn.com.tw/2010MAIN/css/SpryTabbedPanels.css' rel='stylesheet' type='text/css'>");
|
1638
|
+
}
|
1639
|
+
</script>
|
1640
|
+
|
1641
|
+
<!-- 2013/6/4 -->
|
1642
|
+
<table border="0" cellpadding="2" cellspacing="0" width="245" style="position:relative;">
|
1643
|
+
<tbody>
|
1644
|
+
<tr>
|
1645
|
+
<td><img src="http://s.udn.com.tw/2010/images/spacer_002.gif" height="10" width="10"></td>
|
1646
|
+
</tr>
|
1647
|
+
<tr>
|
1648
|
+
<td><div id="TabbedPanels1" class="TabbedPanels">
|
1649
|
+
<ul class="TabbedPanelsTabGroup">
|
1650
|
+
<li class="TabbedPanelsTab" id="tabindex0" tabindex="0" onClick="fbTab(0);">�n�ͤ���</li>
|
1651
|
+
<li class="TabbedPanelsTab" id="tabindex1" tabindex="1" onClick="fbTab(1)">�p�X�s�D��������</li>
|
1652
|
+
</ul>
|
1653
|
+
<div class="TabbedPanelsContentGroup">
|
1654
|
+
<div id="fbtab0" class="TabbedPanelsContent" style="width:245px;height:510px;position:relative;left:0px;opt:0px;">
|
1655
|
+
<iframe id="tabframe" name="tabframe" src="" scrolling="no" frameborder="0" style="border:none; border-style: none;border-width: 0;overflow:hidden; width:240px; height:500px;" allowTransparency="true" ></iframe>
|
1656
|
+
</div>
|
1657
|
+
</div>
|
1658
|
+
</div></td>
|
1659
|
+
</tr>
|
1660
|
+
|
1661
|
+
</tbody>
|
1662
|
+
</table>
|
1663
|
+
</td></tr>
|
1664
|
+
<script>
|
1665
|
+
function fbTab(id){
|
1666
|
+
if ( id==1 ){
|
1667
|
+
// $jq("#tabframe").attr("src","http://www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fmyudn&width=240&height=500&show_faces=false&colorscheme=light&stream=true&show_border=false&header=false&appId=234971529904305");
|
1668
|
+
$jq("#fbtab0").html('<iframe id="tabframe" name="tabframe" src="http://www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fmyudn&width=240&height=500&show_faces=false&colorscheme=light&stream=true&show_border=false&header=false&appId=234971529904305" scrolling="no" frameborder="0" style="border:none; border-style: none;border-width: 0;overflow:hidden; width:240px; height:500px;" allowTransparency="true" ></iframe>');
|
1669
|
+
//$jq("#tabindex1").css("background-image","http://udn.com/2010MAIN/img/tag_bg.gif");
|
1670
|
+
//$jq("#tabindex0").css("background-image","");
|
1671
|
+
$jq("#tabindex1").attr('class', 'TabbedPanelsTab TabbedPanelsTabSelected');
|
1672
|
+
//$jq("#tabindex1").attr('width', '120px');
|
1673
|
+
$jq("#tabindex0").attr('class', 'TabbedPanelsTab');
|
1674
|
+
//$jq("#tabindex0").attr('width', '120px');
|
1675
|
+
}else{
|
1676
|
+
// $jq("#tabframe").attr("src","http://www.facebook.com/plugins/activity.php?site=udn.com&width=240&height=500&header=false&colorscheme=light&linktarget=_blank&font&recommendations=true");
|
1677
|
+
//$jq("#fbtab0").html('<iframe id="tabframe" name="tabframe" src="http://www.facebook.com/plugins/activity.php?site=udn.com&width=240&height=500&header=false&colorscheme=light&linktarget=_blank&font&recommendations=true" scrolling="no" frameborder="0" style="border:none; border-style: none;border-width: 0;overflow:hidden; width:240px; height:500px;" allowTransparency="true" ></iframe>');
|
1678
|
+
$jq("#fbtab0").html('<iframe id="tabframe" name="tabframe" src="http://udn.com/2010/NEWS/INCLUDE/facebook_activity.html" scrolling="no" frameborder="0" style="border:none; border-style: none;border-width: 0;overflow:hidden; width:240px; height:500px;" allowTransparency="true" ></iframe>');
|
1679
|
+
//$jq("#tabindex0").css("background-image","http://udn.com/2010MAIN/img/tag_bg.gif");
|
1680
|
+
//$jq("#tabindex1").css("background-image","");
|
1681
|
+
$jq("#tabindex0").attr('class', 'TabbedPanelsTab TabbedPanelsTabSelected');
|
1682
|
+
//$jq("#tabindex0").attr('width', '120px');
|
1683
|
+
$jq("#tabindex1").attr('class', 'TabbedPanelsTab');
|
1684
|
+
//$jq("#tabindex1").attr('width', '120px');
|
1685
|
+
}
|
1686
|
+
}
|
1687
|
+
|
1688
|
+
var tabnn=Math.round(Math.random+1);
|
1689
|
+
if (tabnn> 1)
|
1690
|
+
fbTab(1);
|
1691
|
+
else
|
1692
|
+
fbTab(0);
|
1693
|
+
|
1694
|
+
</script>
|
1695
|
+
<!-- end of facebook activity -->
|
1696
|
+
|
1697
|
+
<!--FACEBOOK ACTIVITY SSI����-->
|
1698
|
+
|
1699
|
+
<!--�q�\�q�l��SSI�}�l-->
|
1700
|
+
<tr><td>
|
1701
|
+
<table width="240" border="0" cellspacing="0" cellpadding="2">
|
1702
|
+
<tr>
|
1703
|
+
<td><img src="http://s.udn.com.tw/images/mag/sports/images/spacer.gif" width="10" height="10"></td>
|
1704
|
+
</tr>
|
1705
|
+
<tr>
|
1706
|
+
<td>
|
1707
|
+
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
1708
|
+
<tr>
|
1709
|
+
<td width="81%" nowrap><span class="right_category">�q�\�q�l��</span></td>
|
1710
|
+
<td width="19%" class="subcategory_statistic"> </td>
|
1711
|
+
</tr>
|
1712
|
+
</table>
|
1713
|
+
</td>
|
1714
|
+
</tr>
|
1715
|
+
<tr>
|
1716
|
+
<td bgcolor="#126CB1"><img src="http://s.udn.com.tw/images/mag/sports/images/spacer.gif" width="10" height="1"></td>
|
1717
|
+
</tr>
|
1718
|
+
</table>
|
1719
|
+
<table width="240" class="story">
|
1720
|
+
<tr>
|
1721
|
+
<td>
|
1722
|
+
<form name="orderone" action="http://paper.udn.com/ZOPE/UDN/Subscribe/Pkg_Add" method="get" target="_blank">
|
1723
|
+
<table align="center" width="100%" border="0" cellpadding="2" cellspacing="0">
|
1724
|
+
<tbody><tr>
|
1725
|
+
<td><!-- <font color="530170">�п�J�z��e-mail</font> -->
|
1726
|
+
|
1727
|
+
<input gtbfieldid="1" name="p_email" class="sub_category" onfocus='this.value=""' value="�п�J�z��e-mail" size="32" maxlength="60" style="width:210px">
|
1728
|
+
<input class="textbk" size="10" name="p_passwd" type="hidden">
|
1729
|
+
<input class="textbk" size="10" value="out" name="identity" type="hidden">
|
1730
|
+
|
1731
|
+
</td>
|
1732
|
+
</tr>
|
1733
|
+
<tr>
|
1734
|
+
<td class="sub_category">
|
1735
|
+
<input checked value="H" name="p_POP0003" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=POP0003" target="_blank">�@���Ȧ�Bon Voyage�q�l��</a><br>
|
1736
|
+
<input checked value="H" name="p_PIE0004" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=PIE0004" target="_blank">�ȹC���a�q�l��</a><br>
|
1737
|
+
<input checked value="H" name="p_PIE0013" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=PIE0013" target="_blank">�Ȧ�⥾</a><br>
|
1738
|
+
<input checked value="H" name="p_PIA0020" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=PIA0020" target="_blank">�g���ͬ����a</a><br>
|
1739
|
+
<input checked value="H" name="p_POE0017" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=POE0017" target="_blank">�ȹC���ֳ�</a><br>
|
1740
|
+
<input checked value="H" name="p_POE0024" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=POE0024" target="_blank">��M�ѤU�ȹC�q�l��</a><br>
|
1741
|
+
<input checked value="H" name="p_PIE0015" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=PIE0015" target="_blank">Sports�[�I��</a><br>
|
1742
|
+
<input checked value="H" name="p_POD0003" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=POD0003" target="_blank">�O�_�e�Z</a><br>
|
1743
|
+
<input checked value="H" name="p_POD0005" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=POD0005" target="_blank">�����e�Z</a><br>
|
1744
|
+
<input checked value="H" name="p_POE0033" type="checkbox"><a href="http://paper.udn.com/papers.php?pname=POE0033" target="_blank">udn�o�N���T</a>
|
1745
|
+
</td>
|
1746
|
+
</tr>
|
1747
|
+
<tr>
|
1748
|
+
|
1749
|
+
<td><br>
|
1750
|
+
<div align="left"><a href="javascript:document.orderone.submit();"><img src="http://s.udn.com.tw/1024/images/moneyimg/order_1.gif" width="61" border="0" height="22"></a>
|
1751
|
+
</div>
|
1752
|
+
</td>
|
1753
|
+
</tr>
|
1754
|
+
</tbody></table>
|
1755
|
+
</form>
|
1756
|
+
</td>
|
1757
|
+
</tr></table>
|
1758
|
+
</td></tr>
|
1759
|
+
<td><img src="http://s.udn.com.tw/images/mag/life/images/spacer.gif" width="10" height="10"></td>
|
1760
|
+
</tr>
|
1761
|
+
|
1762
|
+
<!--�q�\�q�l��SSI����-->
|
1763
|
+
|
1764
|
+
<!--�s�D���W�D google 250x250 �}�l-->
|
1765
|
+
<table width="240" border="0" cellspacing="0" cellpadding="2">
|
1766
|
+
<tr><td><iframe src="/SSI/AD/googleAd250x250.html" width="255" height="255" scrolling="no" frameborder="0" allowtransparency="true"></iframe></td></tr>
|
1767
|
+
</table>
|
1768
|
+
<!--�s�D���W�D google 250x250 ����-->
|
1769
|
+
|
1770
|
+
<tr>
|
1771
|
+
<td height="16"> </td>
|
1772
|
+
</tr>
|
1773
|
+
</tbody></table></td>
|
1774
|
+
</tr>
|
1775
|
+
</tbody></table>
|
1776
|
+
<a id="gotop" href="#top"></a>
|
1777
|
+
|
1778
|
+
<div id="footer">
|
1779
|
+
<style>
|
1780
|
+
#footer_links {
|
1781
|
+
color: #666666;
|
1782
|
+
float: left;
|
1783
|
+
}
|
1784
|
+
#footer_links a.sp {
|
1785
|
+
color: #0054A6;
|
1786
|
+
}
|
1787
|
+
#footer_box {
|
1788
|
+
color: #888888;
|
1789
|
+
display: block;
|
1790
|
+
margin: auto;
|
1791
|
+
overflow: hidden;
|
1792
|
+
padding: 0 10px;
|
1793
|
+
width: 980px;
|
1794
|
+
}
|
1795
|
+
#footer_copy {
|
1796
|
+
float: right;
|
1797
|
+
font-family: Arial,helvetica,clean,"�s�ө���","PMingLiU",sans-serif;
|
1798
|
+
font-size: 11px;
|
1799
|
+
position: relative;
|
1800
|
+
top: -2px;
|
1801
|
+
}
|
1802
|
+
</style>
|
1803
|
+
<script type="text/javascript" src="http://s.udn.com.tw/2010MAIN/js/udn_footer_links.js"></script>
|
1804
|
+
<!-- /footer_box -->
|
1805
|
+
|
1806
|
+
</div>
|
1807
|
+
<!-- /footer -->
|
1808
|
+
<!-- for cm storypae float share -->
|
1809
|
+
<div id='sidebar' style="display:none;">
|
1810
|
+
<ul>
|
1811
|
+
<li>
|
1812
|
+
<script type="text/javascript">
|
1813
|
+
//document.write("<iframe src='http://www.facebook.com/plugins/like.php?href="+aurl+"&layout=button_count&locale=zh_TW&show_faces=true&width=90&action=like&font=verdana&colorscheme=light&height=80' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:120px; height:22px;' allowTransparency='true'></iframe>");
|
1814
|
+
|
1815
|
+
if ( window.location.href.indexOf("Prev") >= 0 ) {}
|
1816
|
+
else{
|
1817
|
+
document.write("<iframe src='http://www.facebook.com/plugins/like.php?href="+aurl+"&width&layout=box_count&action=like&show_faces=true&share=false&width=120&height=65' scrolling='no' frameborder='0' style='border:none; overflow:hidden; width:120px; height:65px;' allowTransparency='true'></iframe>");
|
1818
|
+
}
|
1819
|
+
</script>
|
1820
|
+
</li>
|
1821
|
+
<li>
|
1822
|
+
<g:plusone size='tall'></g:plusone>
|
1823
|
+
</li>
|
1824
|
+
<li>
|
1825
|
+
<div id="fb_border" style="text-align: center;padding-top: 5px;display:none">0</div>
|
1826
|
+
<script>
|
1827
|
+
if ( window.location.href.indexOf("Prev") >= 0 ) {}
|
1828
|
+
else{
|
1829
|
+
var comments_count = 0;
|
1830
|
+
jQuery(function(){
|
1831
|
+
jQuery.ajax({
|
1832
|
+
url: 'https://graph.facebook.com/?ids='+aurl,
|
1833
|
+
dataType: 'jsonp',
|
1834
|
+
success: function(data) {
|
1835
|
+
comments_count = data[aurl].comments;
|
1836
|
+
//console.log(data[aurl].comments);
|
1837
|
+
jQuery("#fb_border").html(comments_count);
|
1838
|
+
}
|
1839
|
+
});
|
1840
|
+
});
|
1841
|
+
}
|
1842
|
+
//document.write("<fb:comments-count href="+aurl+"></fb:comments-count>");
|
1843
|
+
</script>
|
1844
|
+
<div id="fb_border2">
|
1845
|
+
<s> </s>
|
1846
|
+
<i> </i>
|
1847
|
+
</div>
|
1848
|
+
<style>
|
1849
|
+
#fb_border2 {
|
1850
|
+
bottom: 1px;
|
1851
|
+
height: 2px;
|
1852
|
+
left: 7px;
|
1853
|
+
position: relative;
|
1854
|
+
width: 0;
|
1855
|
+
z-index: 2;
|
1856
|
+
}
|
1857
|
+
|
1858
|
+
#fb_border2 i {
|
1859
|
+
border-top-color: #FFFFFF;
|
1860
|
+
left: 0;
|
1861
|
+
top: -10px;
|
1862
|
+
}
|
1863
|
+
|
1864
|
+
#fb_border2 s,
|
1865
|
+
#fb_border2 i {
|
1866
|
+
border-color: #BBBBBB rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
|
1867
|
+
border-style: solid;
|
1868
|
+
border-width: 5px;
|
1869
|
+
display: block;
|
1870
|
+
position: relative;
|
1871
|
+
}
|
1872
|
+
</style>
|
1873
|
+
<script>
|
1874
|
+
jQuery(function() {
|
1875
|
+
jQuery("#fb_border").css("width","48px").css("height","25px").css("border","1px solid #BBBBBB").css("border-radius","2px").css("background-color","white").css("display","block");
|
1876
|
+
});
|
1877
|
+
</script>
|
1878
|
+
</li>
|
1879
|
+
<li>
|
1880
|
+
<a href="#_fb_comments"><img src="/2010MAIN/img/facebook_comment.png" border="0"></a>
|
1881
|
+
</li>
|
1882
|
+
<script>
|
1883
|
+
if ( window.location.href.indexOf("/ENTERTAINMENT/") == -1) {
|
1884
|
+
document.write("<li class='discuss'><a href='#comments' title='�Q��'>�Q��</a><div class='dialog'><div class='dialog_arr'></div><div class='dialog_number'><span class='contribution_noticetitle' style='color:black' id='postn2'></span></div></div></li>");
|
1885
|
+
}
|
1886
|
+
</script>
|
1887
|
+
<li class='fb'><a href='javascript:addFacebook();'>Facebook</a></li>
|
1888
|
+
<li class='plurk'><a href='javascript:addPlurk();'>Plurk</a></li>
|
1889
|
+
<!--<li class='twitter'><a href='javascript:addTwitter();'>Twitter</a></li>-->
|
1890
|
+
</ul>
|
1891
|
+
</div>
|
1892
|
+
|
1893
|
+
<script type="text/javascript">
|
1894
|
+
browserv=100;
|
1895
|
+
if (navigator.appName == 'Microsoft Internet Explorer') {
|
1896
|
+
var ua = navigator.userAgent;
|
1897
|
+
var re = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
|
1898
|
+
if (re.test(ua) != null){
|
1899
|
+
rv = parseFloat( RegExp.$1 );
|
1900
|
+
browserv=rv;
|
1901
|
+
}
|
1902
|
+
}
|
1903
|
+
|
1904
|
+
|
1905
|
+
function floatShareControl(window_width){
|
1906
|
+
//alert(window_width);
|
1907
|
+
if (window_width>(1024+100)){
|
1908
|
+
jQuery("#sidebar").show();
|
1909
|
+
var leftcontrol=window_width-1024;
|
1910
|
+
leftcontrol=parseInt(leftcontrol/2);
|
1911
|
+
//alert(" width "+leftcontrol)
|
1912
|
+
|
1913
|
+
//if (navigator.appName == 'Microsoft Internet Explorer' && leftcontrol > 115){
|
1914
|
+
if ( leftcontrol > (54+fb_len*3)){
|
1915
|
+
leftcontrol=leftcontrol-(54+fb_len*3);
|
1916
|
+
///alert(" cc "+leftcontrol)
|
1917
|
+
jQuery("#sidebar").css("margin-left", leftcontrol+"px");
|
1918
|
+
}else{
|
1919
|
+
jQuery("#sidebar").hide();
|
1920
|
+
}
|
1921
|
+
}else{
|
1922
|
+
jQuery("#sidebar").hide();
|
1923
|
+
}
|
1924
|
+
//if ( browserv < 8 ){
|
1925
|
+
// jQuery("#sidebar").hide();
|
1926
|
+
// }
|
1927
|
+
} //end of function floatShareControl
|
1928
|
+
|
1929
|
+
|
1930
|
+
//get fb total_count
|
1931
|
+
fb_len=3;
|
1932
|
+
if ( window.location.href.indexOf("Prev") >= 0 ) {}
|
1933
|
+
else{
|
1934
|
+
if (browserv>20){
|
1935
|
+
jQuery.get("http://api.facebook.com/restserver.php?method=links.getStats&urls="+aurl, function(fbdata) {
|
1936
|
+
fbdata=new XMLSerializer().serializeToString(fbdata);
|
1937
|
+
if ( fbdata.indexOf("<total_count>") > 0 ){
|
1938
|
+
fbdata=fbdata.substring(fbdata.indexOf("<total_count>")+13, fbdata.length);
|
1939
|
+
fbdata=fbdata.substring(0, fbdata.indexOf("</total_count>"));
|
1940
|
+
fb_len=fbdata.length;
|
1941
|
+
if (fb_len>3)
|
1942
|
+
fb_len++;
|
1943
|
+
floatShareControl(jQuery(window).width());
|
1944
|
+
}
|
1945
|
+
})
|
1946
|
+
}else{
|
1947
|
+
floatShareControl(jQuery(window).width());
|
1948
|
+
}
|
1949
|
+
}
|
1950
|
+
|
1951
|
+
//resize event
|
1952
|
+
jQuery(window).resize(function() {
|
1953
|
+
resizewidth=jQuery(window).width();
|
1954
|
+
if (resizewidth){
|
1955
|
+
floatShareControl(resizewidth);
|
1956
|
+
}
|
1957
|
+
});
|
1958
|
+
|
1959
|
+
//mouse scroll event
|
1960
|
+
//jQuery(window).scroll(function() {
|
1961
|
+
// resizewidth=jQuery(window).width();
|
1962
|
+
// if (resizewidth){
|
1963
|
+
// floatShareControl(resizewidth);
|
1964
|
+
// }
|
1965
|
+
//});
|
1966
|
+
|
1967
|
+
|
1968
|
+
</script>
|
1969
|
+
<!--- float share -->
|
1970
|
+
|
1971
|
+
|
1972
|
+
<SCRIPT language=JavaScript>
|
1973
|
+
<!--
|
1974
|
+
if(isMenu){
|
1975
|
+
document.write("<SCRIPT SRC='../../2010hierSetEnvstory.js'><\/SCRIPT>");
|
1976
|
+
document.write("<SCRIPT SRC='../../hierArrays.js'><\/SCRIPT>");
|
1977
|
+
document.write("<SCRIPT LANGUAGE='JavaScript' SRC='../../hierIE_2010.js'><\/SCRIPT>");
|
1978
|
+
}
|
1979
|
+
//-->
|
1980
|
+
</SCRIPT>
|
1981
|
+
<img src='http://pv.udn.com/LogFriend/LogInfoAll?func=newsview&newsid=8950901' WIDTH=1 HEIGHT=1 BORDER=0>
|
1982
|
+
|
1983
|
+
<!-- watermark ad start -->
|
1984
|
+
<!-- <script type="text/javascript" src="/NEWS/watermark_omo_SPORT.js"></script> -->
|
1985
|
+
<!-- watermark ad end -->
|
1986
|
+
|
1987
|
+
|
1988
|
+
|
1989
|
+
|
1990
|
+
|
1991
|
+
<script>
|
1992
|
+
jQuery(document).ready(function() {
|
1993
|
+
jQuery("#slidetabs_1 > dl > dd").bind("click",function() {
|
1994
|
+
var ind = parseInt(jQuery("#slidetabs_1 > dl > dd").index(this))+ parseInt(1);
|
1995
|
+
var tab = "Tab"+ind;
|
1996
|
+
var hr = jQuery(this).html();
|
1997
|
+
var hrA = hr.split("\"");
|
1998
|
+
var hr2 = hrA[3];
|
1999
|
+
var hrA2 = hr2.split("?");
|
2000
|
+
var hr3 = hrA2[0];
|
2001
|
+
_track(hr3);
|
2002
|
+
_track(tab);
|
2003
|
+
});
|
2004
|
+
});
|
2005
|
+
|
2006
|
+
function _track(url){
|
2007
|
+
_gaq.push(['_setAccount', 'UA-19660006-3']);
|
2008
|
+
_gaq.push(['_setDomainName', '.udn.com']);
|
2009
|
+
_gaq.push(['_trackPageview', url]);
|
2010
|
+
}
|
2011
|
+
</script>
|
2012
|
+
|
2013
|
+
<script>
|
2014
|
+
function getByteLength(str){
|
2015
|
+
var iCount = 0;
|
2016
|
+
for( k=0; k<str.length; k++ ) {
|
2017
|
+
c = str.charCodeAt(k);
|
2018
|
+
if ( c>=32 && c<=126 ) iCount++;
|
2019
|
+
else iCount += 2;
|
2020
|
+
}
|
2021
|
+
return iCount;
|
2022
|
+
}
|
2023
|
+
|
2024
|
+
function getSubString(str,maxwclength) {
|
2025
|
+
var iCount = 0;
|
2026
|
+
|
2027
|
+
for( k=0; k<str.length; k++ ) {
|
2028
|
+
c = str.charCodeAt(k);
|
2029
|
+
if ( c>=32 && c<=126 ) iCount++;
|
2030
|
+
else iCount += 2;
|
2031
|
+
|
2032
|
+
if (iCount > maxwclength) {
|
2033
|
+
str = str.substr(0,k) + "...";
|
2034
|
+
break;
|
2035
|
+
}
|
2036
|
+
}
|
2037
|
+
|
2038
|
+
return str;
|
2039
|
+
}
|
2040
|
+
</script>
|
2041
|
+
|
2042
|
+
<script type="text/javascript">
|
2043
|
+
//�o�̨ϥ� rId function �O�_�s�b�ӧP�_�O�_�O�b���孶���C�ҥH�S��include gsg �|���@�C
|
2044
|
+
|
2045
|
+
if (typeof($jq) != "undefined" && typeof window.rId == 'function' ) {
|
2046
|
+
//���孶
|
2047
|
+
$jq('table.border tr td table tr:nth-child(10) td').each(function() {
|
2048
|
+
$jq(this).attr("align","left");
|
2049
|
+
});
|
2050
|
+
|
2051
|
+
/* 2012 01 02 fix story ���ttable �|��������D!!
|
2052
|
+
$jq('table.border tr td table tr:nth-child(6)').each(function() {
|
2053
|
+
$jq(this).hide();
|
2054
|
+
$jq(this).attr("id","embs2") ;
|
2055
|
+
});
|
2056
|
+
*/
|
2057
|
+
$jq('table.border tr td table tr:nth-child(5) td:nth-child(1) table ').each(function() {
|
2058
|
+
if ( ! $jq.browser.webkit ) $jq(this).hide();
|
2059
|
+
$jq(this).attr("id","embs2") ;
|
2060
|
+
});
|
2061
|
+
/*if ( ! $jq.browser.webkit ){ //fix author vanished on chrome!!
|
2062
|
+
$jq('table.border tr td table tr:nth-child(9) td').each(function() {
|
2063
|
+
$jq(this).attr("id","linedot") ;
|
2064
|
+
$jq(this).empty() ;
|
2065
|
+
});
|
2066
|
+
}
|
2067
|
+
*/
|
2068
|
+
|
2069
|
+
if ( $jq.browser.webkit){ //for google chrome
|
2070
|
+
/*
|
2071
|
+
$jq('table.border tr td table tr td table tr td table tr:conddtains("story_author")').each(function() {
|
2072
|
+
$jq(this).attr("id","embauth") ;
|
2073
|
+
});
|
2074
|
+
*/
|
2075
|
+
//table.border tr td table tr td table tr
|
2076
|
+
var is=0;
|
2077
|
+
$jq('table.border tr td table tr td table tr td').each(function() {
|
2078
|
+
if ( $jq(this).html().match("linedot") ) {
|
2079
|
+
is++;
|
2080
|
+
if (is==2) $jq(this).hide();
|
2081
|
+
}
|
2082
|
+
});
|
2083
|
+
|
2084
|
+
$jq('table.border tr td table tr td table tr td table tr').each(function() {
|
2085
|
+
if ( $jq(this).html().match("letter.jsp") && $jq(this).html().match("push.gif") ) {
|
2086
|
+
$jq(this).hide();
|
2087
|
+
}
|
2088
|
+
});
|
2089
|
+
|
2090
|
+
} //end of webkit
|
2091
|
+
|
2092
|
+
var cc='--';
|
2093
|
+
var str="";
|
2094
|
+
var selects=$jq("#jumpMenu option");
|
2095
|
+
//append 20130412
|
2096
|
+
for (var i=1;i<(selects.length-1)/2;i++){
|
2097
|
+
var snode=selects[i].lastChild;
|
2098
|
+
descstr=snode.nodeValue;
|
2099
|
+
$jq("#jumpMenu option[value='"+selects[i].value+"']").remove();
|
2100
|
+
if ( descstr.indexOf("@--")<0 && descstr.indexOf("/") < 0 && descstr.indexOf(":") < 0 ){
|
2101
|
+
var art_id=selects[i].value;
|
2102
|
+
// selects[i].value=art_id=art_id.substring(0, art_id.indexOf(".shtml"))+"/"+encodeURIComponent(descstr)+"-"+;
|
2103
|
+
if ( location.href.indexOf("www.udn.com") > 0 ){
|
2104
|
+
//don't change seo
|
2105
|
+
}else {
|
2106
|
+
|
2107
|
+
selects[i].value=encodeURIComponent(descstr)+"-"+art_id;
|
2108
|
+
}
|
2109
|
+
}
|
2110
|
+
$jq("#jumpMenu").append("<option value='"+selects[i].value+"'>"+descstr+"</option>");
|
2111
|
+
}
|
2112
|
+
|
2113
|
+
var rlimit=20;
|
2114
|
+
var displaynum=10;
|
2115
|
+
//var bgimg='/2010/images/list_bg.gif';
|
2116
|
+
var bgimg='http://s.udn.com.tw/img/more_bg.gif';
|
2117
|
+
if ( location.href.indexOf("ENTERTAINMENT") > 0 ){
|
2118
|
+
bgimg='http://s.udn.com.tw/img/more_bg_star.gif';
|
2119
|
+
}
|
2120
|
+
if ( location.href.indexOf("FUND") > 0 || location.href.indexOf("FINANCE") > 0 || location.href.indexOf("STOCK") > 0 ){
|
2121
|
+
bgimg='http://s.udn.com.tw/img/more_bg_money.gif';
|
2122
|
+
}
|
2123
|
+
var maxwclength = 36;
|
2124
|
+
var rlimit=20;
|
2125
|
+
aa='<div id="news_area" style="border-bottom: 1px dotted #CCCCCC;background: url('+bgimg+') repeat-x scroll left top transparent;height:266px;width:548px;padding-bottom:6px">';
|
2126
|
+
aa=aa+'<div id="related_news" style="border-right: 1px solid #CCCCCC; display: block;float:left;height:264px;position: relative;width: 269px;">';
|
2127
|
+
|
2128
|
+
aa=aa+'<div class="news_head" style="float:left;color: #FFFFFF;display:block;font-size: 15px;font-weight: bold;height:28px;margin-bottom:5px;padding:3px 0 0 10px;width: 261px;" ><div class="more" style="float:right;padding-right: 10px;padding-top: 0px;" ><a href="index.shtml"><img src="http://s.udn.com.tw/2010MAIN/img/more.gif" height="21" width="39" border="0"></a></div>�� �� �s �D</div>';
|
2129
|
+
aa=aa+'<dl>';
|
2130
|
+
var jj=0;
|
2131
|
+
for (var i=1;i<rlimit;i++){
|
2132
|
+
if (selects[i] != undefined){
|
2133
|
+
var textnode=selects[i].lastChild;
|
2134
|
+
descstr=textnode.nodeValue;
|
2135
|
+
if ( (i>1) && (selects[i].value == selects[0].value || i > rlimit ) ) break;
|
2136
|
+
|
2137
|
+
if (getByteLength(descstr) > maxwclength ){
|
2138
|
+
descstr = getSubString(descstr,maxwclength);
|
2139
|
+
}
|
2140
|
+
|
2141
|
+
var regex = /�n/;
|
2142
|
+
if ( descstr.match (regex)) {}
|
2143
|
+
else{
|
2144
|
+
aa=aa+'<dd >�E<a href="'+selects[i].value+'" class="story_category" style="font-size:13px;line-height:23px" >'+descstr+'</a></dd>';
|
2145
|
+
jj++;
|
2146
|
+
if ( jj >= displaynum ) break;
|
2147
|
+
}
|
2148
|
+
}
|
2149
|
+
}
|
2150
|
+
|
2151
|
+
aa=aa+'</dl>';
|
2152
|
+
aa=aa+'</div>';
|
2153
|
+
|
2154
|
+
|
2155
|
+
aa=aa+'<div id="hot_news" style="display: block;float:left; position:relative;width: 273px; height:260px" >';
|
2156
|
+
|
2157
|
+
if ( $jq.browser.msie && $jq.browser.version == '6.0' ) {
|
2158
|
+
aa=aa+'<div class="news_head" style="float:left;color: #FFFFFF;display:block;font-size: 15px;font-weight: bold;height:28px;margin-bottom:5px;padding:3px 0 0 10px;width: 261px;" ><div class="more" style="float:right;padding-right: 10px;padding-top: 0px;"><a href="http://dignews.udn.com/forum/udnnews/news_hot.jsp?type=daily&from=story" target="_blank"><img src="http://s.udn.com.tw/2010MAIN/img/more.gif" height="21" width="39" border="0"></a></div>�o �N �s �D</div>';
|
2159
|
+
}
|
2160
|
+
else{
|
2161
|
+
aa=aa+'<div class="news_head" style="float:left;color: #FFFFFF;display:block;font-size: 15px;font-weight: bold;height:28px;margin-bottom:5px;padding:3px 0 0 10px;width: 269px;" ><div class="more" style="float:right;padding-right: 10px;padding-top: 0px;"><a href="http://dignews.udn.com/forum/udnnews/news_hot.jsp?type=daily&from=story" target="_blank"><img src="http://s.udn.com.tw/2010MAIN/img/more.gif" height="21" width="39" border="0"></a></div>�o �N �s �D</div>';
|
2162
|
+
}
|
2163
|
+
aa=aa+'<dl>';
|
2164
|
+
aa=aa+'</dl>';
|
2165
|
+
aa=aa+'</div>';
|
2166
|
+
aa=aa+'</div>';
|
2167
|
+
if ( $jq("#etuFrame").length > 0 ) $jq(aa).insertBefore( $jq("#etuFrame"));
|
2168
|
+
else if ( $jq("#adsense").length > 0 ) $jq(aa).insertBefore( $jq("#adsense"));
|
2169
|
+
else {}
|
2170
|
+
//if ( $jq("#adsense") != undefined ) $jq(aa).insertBefore( $jq("#adsense"));
|
2171
|
+
$jq("#other table").css('display','none');
|
2172
|
+
if ( $jq.browser.msie && $jq.browser.version == '6.0' ) {
|
2173
|
+
$jq.ajax({
|
2174
|
+
url: "/2010MAIN/inc/focus_hot7.html",
|
2175
|
+
success: function(data){
|
2176
|
+
$jq('#hot_news').toggle();
|
2177
|
+
$jq('#hot_news').append(data);
|
2178
|
+
$jq('#hot_news').toggle();
|
2179
|
+
}
|
2180
|
+
});
|
2181
|
+
}
|
2182
|
+
else{
|
2183
|
+
$jq.ajax({
|
2184
|
+
url: "/2010MAIN/inc/focus_hot7.html",
|
2185
|
+
success: function(data){
|
2186
|
+
$jq('#hot_news').toggle();
|
2187
|
+
$jq('#hot_news').append(data);
|
2188
|
+
$jq('#hot_news').toggle();
|
2189
|
+
}
|
2190
|
+
});
|
2191
|
+
}
|
2192
|
+
//}
|
2193
|
+
}
|
2194
|
+
//else{
|
2195
|
+
|
2196
|
+
//}
|
2197
|
+
//$jq('#gotop').click();
|
2198
|
+
</script>
|
2199
|
+
<!-- ae -->
|
2200
|
+
|
2201
|
+
|
2202
|
+
|
2203
|
+
<!-- college2011 -->
|
2204
|
+
<script>
|
2205
|
+
/*
|
2206
|
+
var objtext;
|
2207
|
+
|
2208
|
+
if ( objtext=document.getElementById('search_kw') ){
|
2209
|
+
objtext.value="���I���R";
|
2210
|
+
objtext.style.color = "#999999";
|
2211
|
+
objtext.onclick = function(){
|
2212
|
+
KwCheckClear();
|
2213
|
+
};
|
2214
|
+
}
|
2215
|
+
|
2216
|
+
function KwCheckClear(){
|
2217
|
+
if ( objtext=document.getElementById('search_kw') ){
|
2218
|
+
if( objtext.value == "���I���R" ){
|
2219
|
+
objtext.value="";
|
2220
|
+
}
|
2221
|
+
objtext.style.color = "#000000";
|
2222
|
+
}else{
|
2223
|
+
return;
|
2224
|
+
}
|
2225
|
+
}*/
|
2226
|
+
</script>
|
2227
|
+
<!-- college2011 -->
|
2228
|
+
<!--
|
2229
|
+
<script language="JavaScript" src="/Project/sess.js" type="text/javascript"></script>
|
2230
|
+
-->
|
2231
|
+
|
2232
|
+
<script>
|
2233
|
+
if ( window.location.href.indexOf("/NEWS/main") == -1 ) {
|
2234
|
+
document.write("<script src='https://apis.google.com/js/plusone.js'><\/script>");
|
2235
|
+
}
|
2236
|
+
</script>
|
2237
|
+
<!--<script type="text/javascript" src="https://apis.google.com/js/plusone.js">{lang: 'zh-TW'}</script>-->
|
2238
|
+
|
2239
|
+
|
2240
|
+
<!-- START Nielsen Online SiteCensus V6.0 -->
|
2241
|
+
|
2242
|
+
<!-- END Nielsen Online SiteCensus V6.0 -->
|
2243
|
+
|
2244
|
+
|
2245
|
+
|
2246
|
+
|
2247
|
+
|
2248
|
+
|
2249
|
+
</body>
|
2250
|
+
</html>
|