R與資料處理
#表列資料集
data()
#使用資料集
data(iris)
#觀察讀取到的資料集型態
class(iris)
## [1] "data.frame"
#觀看前幾筆資料
head(iris)
## Sepal.Length Sepal.Width Petal.Length Petal.Width Species
## 1 5.1 3.5 1.4 0.2 setosa
## 2 4.9 3.0 1.4 0.2 setosa
## 3 4.7 3.2 1.3 0.2 setosa
## 4 4.6 3.1 1.5 0.2 setosa
## 5 5.0 3.6 1.4 0.2 setosa
## 6 5.4 3.9 1.7 0.4 setosa
head(iris, 10)
## Sepal.Length Sepal.Width Petal.Length Petal.Width Species
## 1 5.1 3.5 1.4 0.2 setosa
## 2 4.9 3.0 1.4 0.2 setosa
## 3 4.7 3.2 1.3 0.2 setosa
## 4 4.6 3.1 1.5 0.2 setosa
## 5 5.0 3.6 1.4 0.2 setosa
## 6 5.4 3.9 1.7 0.4 setosa
## 7 4.6 3.4 1.4 0.3 setosa
## 8 5.0 3.4 1.5 0.2 setosa
## 9 4.4 2.9 1.4 0.2 setosa
## 10 4.9 3.1 1.5 0.1 setosa
#觀看後幾筆資料
tail(iris)
## Sepal.Length Sepal.Width Petal.Length Petal.Width Species
## 145 6.7 3.3 5.7 2.5 virginica
## 146 6.7 3.0 5.2 2.3 virginica
## 147 6.3 2.5 5.0 1.9 virginica
## 148 6.5 3.0 5.2 2.0 virginica
## 149 6.2 3.4 5.4 2.3 virginica
## 150 5.9 3.0 5.1 1.8 virginica
tail(iris, 10)
## Sepal.Length Sepal.Width Petal.Length Petal.Width Species
## 141 6.7 3.1 5.6 2.4 virginica
## 142 6.9 3.1 5.1 2.3 virginica
## 143 5.8 2.7 5.1 1.9 virginica
## 144 6.8 3.2 5.9 2.3 virginica
## 145 6.7 3.3 5.7 2.5 virginica
## 146 6.7 3.0 5.2 2.3 virginica
## 147 6.3 2.5 5.0 1.9 virginica
## 148 6.5 3.0 5.2 2.0 virginica
## 149 6.2 3.4 5.4 2.3 virginica
## 150 5.9 3.0 5.1 1.8 virginica
#使用str 函式檢視架構
str(iris)
## 'data.frame': 150 obs. of 5 variables:
## $ Sepal.Length: num 5.1 4.9 4.7 4.6 5 5.4 4.6 5 4.4 4.9 ...
## $ Sepal.Width : num 3.5 3 3.2 3.1 3.6 3.9 3.4 3.4 2.9 3.1 ...
## $ Petal.Length: num 1.4 1.4 1.3 1.5 1.4 1.7 1.4 1.5 1.4 1.5 ...
## $ Petal.Width : num 0.2 0.2 0.2 0.2 0.2 0.4 0.3 0.2 0.2 0.1 ...
## $ Species : Factor w/ 3 levels "setosa","versicolor",..: 1 1 1 1 1 1 1 1 1 1 ...
iris[ 1 , 3 ]
## [1] 1.4
iris[ 1:3 , 3]
## [1] 1.4 1.4 1.3
iris[ 1:3 , "Petal.Length"]
## [1] 1.4 1.4 1.3
#取前五筆包含length 及 width 的資料
five.Sepal.iris = iris[1:5, c("Sepal.Length", "Sepal.Width")]
five.Sepal.iris <- iris[1:5, c("Sepal.Length", "Sepal.Width")]
# Vector
weights = c(72,67,55)
heights = c(180,160,171)
bmi = weights / (heights / 100 ) ^2
#可以用條件做篩選
setosa.data = iris[iris$Species=="setosa", 1:5]
#iris$Sepal.Width > 3.5
#iris[ iris$Sepal.Width > 3.5 , 1:3 ]
#heights > 170
#heights[heights > 170]
#用sort做資料排序
sort(iris$Sepal.Length)
## [1] 4.3 4.4 4.4 4.4 4.5 4.6 4.6 4.6 4.6 4.7 4.7 4.8 4.8 4.8 4.8 4.8 4.9
## [18] 4.9 4.9 4.9 4.9 4.9 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.1 5.1
## [35] 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.2 5.2 5.2 5.2 5.3 5.4 5.4 5.4 5.4 5.4
## [52] 5.4 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.6 5.6 5.6 5.6 5.6 5.6 5.7 5.7 5.7
## [69] 5.7 5.7 5.7 5.7 5.7 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.9 5.9 5.9 6.0 6.0
## [86] 6.0 6.0 6.0 6.0 6.1 6.1 6.1 6.1 6.1 6.1 6.2 6.2 6.2 6.2 6.3 6.3 6.3
## [103] 6.3 6.3 6.3 6.3 6.3 6.3 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.5 6.5 6.5 6.5
## [120] 6.5 6.6 6.6 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.8 6.8 6.8 6.9 6.9 6.9
## [137] 6.9 7.0 7.1 7.2 7.2 7.2 7.3 7.4 7.6 7.7 7.7 7.7 7.7 7.9
sort(iris$Sepal.Length, decreasing = TRUE)
## [1] 7.9 7.7 7.7 7.7 7.7 7.6 7.4 7.3 7.2 7.2 7.2 7.1 7.0 6.9 6.9 6.9 6.9
## [18] 6.8 6.8 6.8 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.6 6.6 6.5 6.5 6.5 6.5
## [35] 6.5 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3
## [52] 6.2 6.2 6.2 6.2 6.1 6.1 6.1 6.1 6.1 6.1 6.0 6.0 6.0 6.0 6.0 6.0 5.9
## [69] 5.9 5.9 5.8 5.8 5.8 5.8 5.8 5.8 5.8 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7
## [86] 5.6 5.6 5.6 5.6 5.6 5.6 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.4 5.4 5.4 5.4
## [103] 5.4 5.4 5.3 5.2 5.2 5.2 5.2 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.0
## [120] 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 5.0 4.9 4.9 4.9 4.9 4.9 4.9 4.8 4.8
## [137] 4.8 4.8 4.8 4.7 4.7 4.6 4.6 4.6 4.6 4.5 4.4 4.4 4.4 4.3
help(sort)
## starting httpd help server ...
## done
?sort
sort(heights)
## [1] 160 171 180
#用order做資料排序
iris[order(iris$Sepal.Length, decreasing = TRUE),]
## Sepal.Length Sepal.Width Petal.Length Petal.Width Species
## 132 7.9 3.8 6.4 2.0 virginica
## 118 7.7 3.8 6.7 2.2 virginica
## 119 7.7 2.6 6.9 2.3 virginica
## 123 7.7 2.8 6.7 2.0 virginica
## 136 7.7 3.0 6.1 2.3 virginica
## 106 7.6 3.0 6.6 2.1 virginica
## 131 7.4 2.8 6.1 1.9 virginica
## 108 7.3 2.9 6.3 1.8 virginica
## 110 7.2 3.6 6.1 2.5 virginica
## 126 7.2 3.2 6.0 1.8 virginica
## 130 7.2 3.0 5.8 1.6 virginica
## 103 7.1 3.0 5.9 2.1 virginica
## 51 7.0 3.2 4.7 1.4 versicolor
## 53 6.9 3.1 4.9 1.5 versicolor
## 121 6.9 3.2 5.7 2.3 virginica
## 140 6.9 3.1 5.4 2.1 virginica
## 142 6.9 3.1 5.1 2.3 virginica
## 77 6.8 2.8 4.8 1.4 versicolor
## 113 6.8 3.0 5.5 2.1 virginica
## 144 6.8 3.2 5.9 2.3 virginica
## 66 6.7 3.1 4.4 1.4 versicolor
## 78 6.7 3.0 5.0 1.7 versicolor
## 87 6.7 3.1 4.7 1.5 versicolor
## 109 6.7 2.5 5.8 1.8 virginica
## 125 6.7 3.3 5.7 2.1 virginica
## 141 6.7 3.1 5.6 2.4 virginica
## 145 6.7 3.3 5.7 2.5 virginica
## 146 6.7 3.0 5.2 2.3 virginica
## 59 6.6 2.9 4.6 1.3 versicolor
## 76 6.6 3.0 4.4 1.4 versicolor
## 55 6.5 2.8 4.6 1.5 versicolor
## 105 6.5 3.0 5.8 2.2 virginica
## 111 6.5 3.2 5.1 2.0 virginica
## 117 6.5 3.0 5.5 1.8 virginica
## 148 6.5 3.0 5.2 2.0 virginica
## 52 6.4 3.2 4.5 1.5 versicolor
## 75 6.4 2.9 4.3 1.3 versicolor
## 112 6.4 2.7 5.3 1.9 virginica
## 116 6.4 3.2 5.3 2.3 virginica
## 129 6.4 2.8 5.6 2.1 virginica
## 133 6.4 2.8 5.6 2.2 virginica
## 138 6.4 3.1 5.5 1.8 virginica
## 57 6.3 3.3 4.7 1.6 versicolor
## 73 6.3 2.5 4.9 1.5 versicolor
## 88 6.3 2.3 4.4 1.3 versicolor
## 101 6.3 3.3 6.0 2.5 virginica
## 104 6.3 2.9 5.6 1.8 virginica
## 124 6.3 2.7 4.9 1.8 virginica
## 134 6.3 2.8 5.1 1.5 virginica
## 137 6.3 3.4 5.6 2.4 virginica
## 147 6.3 2.5 5.0 1.9 virginica
## 69 6.2 2.2 4.5 1.5 versicolor
## 98 6.2 2.9 4.3 1.3 versicolor
## 127 6.2 2.8 4.8 1.8 virginica
## 149 6.2 3.4 5.4 2.3 virginica
## 64 6.1 2.9 4.7 1.4 versicolor
## 72 6.1 2.8 4.0 1.3 versicolor
## 74 6.1 2.8 4.7 1.2 versicolor
## 92 6.1 3.0 4.6 1.4 versicolor
## 128 6.1 3.0 4.9 1.8 virginica
## 135 6.1 2.6 5.6 1.4 virginica
## 63 6.0 2.2 4.0 1.0 versicolor
## 79 6.0 2.9 4.5 1.5 versicolor
## 84 6.0 2.7 5.1 1.6 versicolor
## 86 6.0 3.4 4.5 1.6 versicolor
## 120 6.0 2.2 5.0 1.5 virginica
## 139 6.0 3.0 4.8 1.8 virginica
## 62 5.9 3.0 4.2 1.5 versicolor
## 71 5.9 3.2 4.8 1.8 versicolor
## 150 5.9 3.0 5.1 1.8 virginica
## 15 5.8 4.0 1.2 0.2 setosa
## 68 5.8 2.7 4.1 1.0 versicolor
## 83 5.8 2.7 3.9 1.2 versicolor
## 93 5.8 2.6 4.0 1.2 versicolor
## 102 5.8 2.7 5.1 1.9 virginica
## 115 5.8 2.8 5.1 2.4 virginica
## 143 5.8 2.7 5.1 1.9 virginica
## 16 5.7 4.4 1.5 0.4 setosa
## 19 5.7 3.8 1.7 0.3 setosa
## 56 5.7 2.8 4.5 1.3 versicolor
## 80 5.7 2.6 3.5 1.0 versicolor
## 96 5.7 3.0 4.2 1.2 versicolor
## 97 5.7 2.9 4.2 1.3 versicolor
## 100 5.7 2.8 4.1 1.3 versicolor
## 114 5.7 2.5 5.0 2.0 virginica
## 65 5.6 2.9 3.6 1.3 versicolor
## 67 5.6 3.0 4.5 1.5 versicolor
## 70 5.6 2.5 3.9 1.1 versicolor
## 89 5.6 3.0 4.1 1.3 versicolor
## 95 5.6 2.7 4.2 1.3 versicolor
## 122 5.6 2.8 4.9 2.0 virginica
## 34 5.5 4.2 1.4 0.2 setosa
## 37 5.5 3.5 1.3 0.2 setosa
## 54 5.5 2.3 4.0 1.3 versicolor
## 81 5.5 2.4 3.8 1.1 versicolor
## 82 5.5 2.4 3.7 1.0 versicolor
## 90 5.5 2.5 4.0 1.3 versicolor
## 91 5.5 2.6 4.4 1.2 versicolor
## 6 5.4 3.9 1.7 0.4 setosa
## 11 5.4 3.7 1.5 0.2 setosa
## 17 5.4 3.9 1.3 0.4 setosa
## 21 5.4 3.4 1.7 0.2 setosa
## 32 5.4 3.4 1.5 0.4 setosa
## 85 5.4 3.0 4.5 1.5 versicolor
## 49 5.3 3.7 1.5 0.2 setosa
## 28 5.2 3.5 1.5 0.2 setosa
## 29 5.2 3.4 1.4 0.2 setosa
## 33 5.2 4.1 1.5 0.1 setosa
## 60 5.2 2.7 3.9 1.4 versicolor
## 1 5.1 3.5 1.4 0.2 setosa
## 18 5.1 3.5 1.4 0.3 setosa
## 20 5.1 3.8 1.5 0.3 setosa
## 22 5.1 3.7 1.5 0.4 setosa
## 24 5.1 3.3 1.7 0.5 setosa
## 40 5.1 3.4 1.5 0.2 setosa
## 45 5.1 3.8 1.9 0.4 setosa
## 47 5.1 3.8 1.6 0.2 setosa
## 99 5.1 2.5 3.0 1.1 versicolor
## 5 5.0 3.6 1.4 0.2 setosa
## 8 5.0 3.4 1.5 0.2 setosa
## 26 5.0 3.0 1.6 0.2 setosa
## 27 5.0 3.4 1.6 0.4 setosa
## 36 5.0 3.2 1.2 0.2 setosa
## 41 5.0 3.5 1.3 0.3 setosa
## 44 5.0 3.5 1.6 0.6 setosa
## 50 5.0 3.3 1.4 0.2 setosa
## 61 5.0 2.0 3.5 1.0 versicolor
## 94 5.0 2.3 3.3 1.0 versicolor
## 2 4.9 3.0 1.4 0.2 setosa
## 10 4.9 3.1 1.5 0.1 setosa
## 35 4.9 3.1 1.5 0.2 setosa
## 38 4.9 3.6 1.4 0.1 setosa
## 58 4.9 2.4 3.3 1.0 versicolor
## 107 4.9 2.5 4.5 1.7 virginica
## 12 4.8 3.4 1.6 0.2 setosa
## 13 4.8 3.0 1.4 0.1 setosa
## 25 4.8 3.4 1.9 0.2 setosa
## 31 4.8 3.1 1.6 0.2 setosa
## 46 4.8 3.0 1.4 0.3 setosa
## 3 4.7 3.2 1.3 0.2 setosa
## 30 4.7 3.2 1.6 0.2 setosa
## 4 4.6 3.1 1.5 0.2 setosa
## 7 4.6 3.4 1.4 0.3 setosa
## 23 4.6 3.6 1.0 0.2 setosa
## 48 4.6 3.2 1.4 0.2 setosa
## 42 4.5 2.3 1.3 0.3 setosa
## 9 4.4 2.9 1.4 0.2 setosa
## 39 4.4 3.0 1.3 0.2 setosa
## 43 4.4 3.2 1.3 0.2 setosa
## 14 4.3 3.0 1.1 0.1 setosa
order(heights)
## [1] 2 3 1
#下載檔案資料
#download.file('https://raw.githubusercontent.com/ywchiu/rtibame/master/History/Class1/Lab1/2330.csv', destfile = '2330.csv')
#讀取檔案資料
tw2330 = read.csv('2330.csv', header=TRUE)
tw2330$Close
sort(tw2330$Close, decreasing = TRUE)
head(sort(tw2330$Close, decreasing = TRUE))
min(tw2330$Close)
max(tw2330$Close)
head(tw2330[order(tw2330$Close, decreasing = TRUE) , ])
head(tw2330[order(tw2330$Close) , ])
str(tw2330)
tw2330$Date = as.Date(tw2330$Date)
plot( tw2330$Date , tw2330$Close )
library(rvest)
## Warning: package 'rvest' was built under R version 3.2.5
## Loading required package: xml2
newsurl = 'http://www.appledaily.com.tw/realtimenews/section/new/'
apple = read_html(newsurl)
apple
## {xml_document}
## <html>
## [1] <head>\n <meta charset="utf-8"/>\n <title>\xe8\x98\x9e\xe6\x99 ...
## [2] <body id="article" class="all">\n <div class="wrapper">\n ...
iconv
#iconv
iconv(apple, from='UTF-8', to='UTF-8')
## [1] "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>\n<!DOCTYPE html>\n<!--[if lt IE 7 ]> <html lang=\"zh-TW\" class=\"ie6 ielt8\"> <![endif]-->\n<!--[if IE 7 ]> <html lang=\"zh-TW\" class=\"ie7 ielt8\"> <![endif]-->\n<!--[if IE 8 ]> <html lang=\"zh-TW\" class=\"ie8\"> <![endif]-->\n<!--[if (gte IE 9)|!(IE)]><!-->\n<html lang=\"zh-TW\"> <!--<![endif]-->\n<head>\n <meta charset=\"utf-8\"/>\n <title>蘋果即時新聞|蘋果日報|Apple Daily</title>\n <meta name=\"description\" content=\"蘋果日報網站提供即時、快速、豐富的最新時事動態,包含國際、社會、娛樂、政治、生活、財經等最新訊息,並為您搜奇地球村萬象與趣聞,強調有圖有真相、影片最明白,讓您時時刻刻掌握天下事!\"/>\n <meta name=\"keywords\" content=\"蘋果日報,Apple Daily,台灣,壹傳媒,Apple, Animation news, Action News, Apple news, news,蘋果,即時,最新,蘋果新聞,新聞,壹週刊,壹電視,動新聞,即時新聞,Facebook,臉書,蘋果粉絲團,plurk,twitter,留言,分享,按讚,天氣,影音新聞,影片,影音,行動版,手機,App,Android,iphone,Mango,爆料,投稿,發票,統一發票,RSS,生活,國際,娛樂,體育,副刊,財經,股市,樂透,威力彩,社會,熱門,彩券,頭彩\"/>\n <meta property=\"og:title\" content=\"蘋果即時新聞|蘋果日報|Apple Daily\"/>\n <meta property=\"og:image\" content=\"http://twimg.edgesuite.net/appledaily/images/core/logo_bg.png\"/>\n <meta property=\"og:description\" content=\"蘋果日報網站提供即時、快速、豐富的最新時事動態,包含國際、社會、娛樂、政治、生活、財經等最新訊息,並為您搜奇地球村萬象與趣聞,強調有圖有真相、影片最明白,讓您時時刻刻掌握天下事!\"/>\n <link rel=\"shortcut icon\" href=\"http://twimg.edgesuite.net/appledaily/pinsite/64x64.ico\"/>\n <link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"http://twimg.edgesuite.net/appledaily/pinsite/64x64.ico\"/>\n <link rel=\"icon\" type=\"image/ico\" href=\"http://twimg.edgesuite.net/appledaily/pinsite/64x64.ico\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/style.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/modules.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/rtnewslist.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/style.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/realtimenews.css\"/>\n <script src=\"http://twimg.edgesuite.net/www/js/html5.js\"/>\n <script src=\"http://twimg.edgesuite.net/appledaily/images/js/jquery-1.7.2.min.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/iepngfix.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/jquery.ifixpng.js\"/>\n <script type=\"text/javascript\" language=\"JavaScript\" src=\"http://twimg.edgesuite.net/adx/gpt.js\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/owl.carousel.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/carousel-layout.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/assets/css/animate-custom.css\"/>\n <script src=\"http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/owl.carousel.fix.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/appledaily-detectmobilebrowser.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/applemobile/js/jquery.cookie.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/GeoApiPC.js\"/>\n <script><![CDATA[\n googletag.cmd.push(function() {\n var mappingHeadBanner = googletag.sizeMapping().addSize([0, 0], [ [970,90],[970,160], [970,250] ]).build();\n var mappingLREC1 = googletag.sizeMapping().addSize([0, 0], [ [300,250], [300,600] ]).build();\n HeadBanner = gpt.createAdSlot('AppleDaily/realtimenews_new_index/HeadBanner', 'HeadBanner', 'leaderboard', GeoDFP).defineSizeMapping(mappingHeadBanner).setCollapseEmptyDiv(true);\n LREC1 = gpt.createAdSlot('AppleDaily/realtimenews_new_index/LREC1', 'LREC', 'rectangleAD1', GeoDFP).defineSizeMapping(mappingLREC1).setCollapseEmptyDiv(true);\n LREC2 = gpt.createAdSlot('AppleDaily/realtimenews_new_index/LREC2', 'LREC', 'rectangleAD2', GeoDFP);\n W1 = gpt.createAdSlot('AppleDaily/realtimenews_new_index/Wallpaper1', '150x800', 'door-left', GeoDFP);\n W2 = gpt.createAdSlot('AppleDaily/realtimenews_new_index/Wallpaper2', '150x800', 'door-right', GeoDFP);\n BottomBanner = gpt.createAdSlot('AppleDaily/realtimenews_new_index/BottomBanner', '1x1', 'div-ad-bottom', GeoDFP);\n Minibar = gpt.createAdSlot('AppleDaily/realtimenews_new_index/minibar', '640x90', 'minibar', GeoDFP);\n gpt.enableServices();\n });\n ]]></script>\n</head>\n<body id=\"article\" class=\"all\">\n <div class=\"wrapper\">\n <div class=\"sqrezeer\">\n <script><![CDATA[\n var _comscore = _comscore || [];\n _comscore.push({ c1: \"2\", c2: \"8028476\" });\n (function() {\n var s = document.createElement(\"script\"), el = document.getElementsByTagName(\"script\")[0]; s.async = true;\n s.src = (document.location.protocol == \"https:\" ? \"https://sb\" : \"http://b\") + \".scorecardresearch.com/beacon.js\";\n el.parentNode.insertBefore(s, el);\n })();\n]]></script>\n<noscript>\n <img src=\"http://b.scorecardresearch.com/p?c1=2&c2=8028476&cv=2.0&cj=1\"/>\n</noscript>\n\n<!-- 1X1 -->\n<script type=\"text/javascript\" src=\"http://imp.nextmedia.com/js/nxm_tr_v16.js\"/>\n<script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/1x1/fingerprint.js\"/>\n<script><![CDATA[\n nxmTrack.nxmAddSeg(\"REGION=TW\");\n nxmTrack.nxmAddSeg(\"PROD=ADAILY\");\n nxmTrack.nxmAddSeg(\"SITE=www.appledaily.com.tw\"); \n nxmTrack.nxmAddSeg(\"CH=APPLEDAILY\");\n nxmTrack.nxmAddSeg(\"SECTION=REAL\");\n nxmTrack.nxmAddSeg(\"MENU=\"); \n nxmTrack.nxmAddSeg(\"TITLE=\");\n nxmTrack.nxmAddSeg(\"SUBSECT=new\");\n nxmTrack.nxmAddSeg(\"SUBSUBSECT=new\"); \n nxmTrack.nxmAddSeg(\"MEDIA=TEXT\");\n nxmTrack.nxmAddSeg(\"CONTENT=INDEX\"); \n nxmTrack.nxmAddSeg(\"ISSUEID=\"); \n nxmTrack.nxmAddSeg(\"CID=\"); \n nxmTrack.nxmAddSeg(\"CAT=new\"); \n nxmTrack.nxmAddSeg(\"NEWS=REALTIME\"); \n nxmTrack.nxmAddSeg(\"PLATFORM=WEB\"); \n nxmTrack.nxmAddSeg(\"EDM=MOST\");\n nxmTrack.nxmAddSeg(\"VERSION=\");\n nxmTrack.nxmAddSeg(\"DEVICE=\");\n nxmTrack.nxmAddSeg(\"ACTION=PAGEVIEW\");\n var ngs_id = nxmTrack.readCookie('ngs_id');\n if (ngs_id == null) ngs_id = '';\n nxmTrack.nxmAddSeg('NGSID=' + ngs_id);\n\n $(document).ready(function() {\n nxmTrack.nxmSendPageDepth(0, new Date().getTime());\n\n //Scroll up/down tracking depth\n var trackRecords = [];\n $(window).scroll(function() {\n var scrollPercent = getPageScrollPercent();\n if (scrollPercent >= 25 && trackRecords.indexOf(\"25\") == -1) {\n trackRecords.push(\"25\");\n nxmTrack.nxmSendPageDepth(25, new Date().getTime());\n } else if (scrollPercent >= 50 && trackRecords.indexOf(\"50\") == -1) {\n trackRecords.push(\"50\");\n nxmTrack.nxmSendPageDepth(50, new Date().getTime());\n } else if (scrollPercent >= 75 && trackRecords.indexOf(\"75\") == -1) {\n trackRecords.push(\"75\");\n nxmTrack.nxmSendPageDepth(75, new Date().getTime());\n } else if (scrollPercent == 100 && trackRecords.indexOf(\"100\") == -1) {\n trackRecords.push(\"100\");\n nxmTrack.nxmSendPageDepth(100, new Date().getTime());\n }\n });\n function getPageScrollPercent() {\n var bottom = $(window).height() + $(window).scrollTop();\n var height = $(document).height();\n return Math.round(100 * bottom / height);\n }\n });\n \n]]></script>\n\n<style><![CDATA[\n #door {position:relative; width:970px; margin-top:45px;}\n #door-left{position:absolute;right: 975px;}\n #door-right{position:absolute;left: 975px;}\n #ypv {float:right;margin:-81px 135px 0px 0px;}\n #ypv a {color:#055b94}\n .nypv {background: url('http://twimg.edgesuite.net/appledaily/images/core/iconset.png') 0px -41px no-repeat;display: inline-block;color: #055b94;width:14px;height:12px;}\n #corpnav a {padding: 0 8px 0 8px;}\n a.mc {left:843px;}\n #corpgs a {top: 9px;}\n .nxlik .nh {left: 805px;top: 18px;}\n #corpgs .fund {background-image:url('http://twimg.edgesuite.net/appledaily/images/core/foundation_top.png');width:65px;height:14px;margin-left:712px;margin-top:18px;}\n #worldwide {top: 26px;right: 0px;} \n .translate { position: absolute;top: 10px;right: 270px;}\n .translate.twn {display:none}\n]]></style>\n<header id=\"globehead\">\n <div class=\"sqzer\">\n <hgroup>\n <h2 class=\"nlogo\"><a href=\"http://www.nextdigital.com.hk/investor/\" class=\"nextmedia overcooked\">This is a part of NextMedia</a></h2>\n <h1 class=\"rlogo\"><a href=\"/realtimenews\" class=\"overcooked\">蘋果日報 | APPLE DAILY</a></h1>\n <!--locate start-->\t\t\t\n <style><![CDATA[\n .locate {width: 122px;position:absolute;top: 10px;left: 455px;}\n .locate a {color:black;display:block;position:absolute;top:5px;left: 30px;font-size: 13px;z-index:1}\n .locate select {opacity:0;position:absolute;width: 90px;top:5px;left: 25px;z-index:1}\n .locate:after {content:url(http://twimg.edgesuite.net/appledaily/images/pclicon.png);width:115px;height:22px;position:absolute;top:0px; border-left: 1px solid #d5d5d5;border-top: 1px solid #9b9b9b;border-bottom: 1px solid #e8e8e8;border-right: 1px solid #d5d5d5;}\n ]]></style>\n <div class=\"locate\" id=\"USlocate\" style=\"display:none\">\n <a href=\"\">切換地區</a>\n <form>\n <select data-role=\"none\" id=\"select-category\" onchange=\"chgUSCat(this.value)\">\n <option value=\"0\">切換地區</option>\n <option value=\"ny\">紐約</option>\n <option value=\"la\">洛杉磯</option>\n <option value=\"sf\">舊金山</option>\n </select>\n </form>\n </div>\n <!--locate end--> \n </hgroup>\n <nav id=\"corpnav\"> \n <a href=\"/\" class=\"opacity \" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_AppleDaily.png\" alt=\" 蘋果日報\"/></a>\t\n <a href=\"/animation\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_AnimatedNews.png\" alt=\" 動新聞\"/></a>\n <a href=\"http://www.applelive.com.tw/livechannel/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/applelive.gif\" alt=\" 蘋果Live\"/></a>\n <a href=\"http://apple360.appledaily.com.tw/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/360logo.png\" alt=\" 蘋果360\" width=\"83\" height=\"30\"/></a>\n <a href=\"http://sharpdaily.tw/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_SharpDaily.png\" alt=\"爽報\"/></a>\n <a href=\"http://www.nextmag.com.tw\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_NextMag.png\" alt=\"壹週刊\"/></a>\n <a href=\"http://www.eat-travel.com.tw/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_eatintravel.png\" alt=\"飲食男女\"/></a>\n <a href=\"http://www.tomonews.com/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_tomonews_s.png\" alt=\"Tomonews\"/></a> \n <a href=\"https://www.youtube.com/user/twappledaily/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_youtube.png\" alt=\"youtube\"/></a> \n\t <a href=\"/teded\" class=\"opacity last\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ted.png\" alt=\"Ted\"/></a>\n </nav> \n \n <!--language start-->\n <div class=\"translate\" id=\"googletranslate\" style=\"display:none\">\n <div id=\"google_translate_element\"/>\n <script type=\"text/javascript\"><![CDATA[\n function googleTranslateElementInit() {\n new google.translate.TranslateElement({pageLanguage: 'zh-TW', includedLanguages: 'zh-CN,zh-TW', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');\n }\n ]]></script>\n <script type=\"text/javascript\" src=\"//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit\"/>\n </div>\n <!--language end-->\t \n <section id=\"worldwide\">\n <a href=\"http://www.twnextdigital.com/\" class=\"tw on\">台灣<U+00A0></a>\n <a href=\"http://www.nextdigital.com.hk/\" class=\"hk\">香港<U+00A0></a>\n </section>\n <section id=\"ypv\">\n <a href=\"http://www.nextdigital.com.hk/investor/\" target=\"_blank\"><span class=\"nypv\"/><span>昨日瀏覽量<U+00A0>:<U+00A0></span><span id=\"pv\">24143206</span></a>\n </section>\n <div style=\"clear:both\"/>\n <section id=\"corpgs\">\n <a href=\"/ethics/index.html\" class=\"mc\" target=\"_blank\">蘋果日報自律委員會</a>\n <a class=\"fund\" href=\"/charity\" target=\"_blank\"/>\n <a href=\"http://www.nextdigital.com.hk/investor/\" class=\"nxlik\" target=\"_blank\"><span class=\"nh overcooked\">Nextmedia</span></a>\n </section>\n <section id=\"door\">\n <div id=\"door-left\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('door-left');})]]></script></div>\n <div id=\"door-right\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('door-right');})]]></script></div>\n </section>\n </div>\n</header>\n<style><![CDATA[\n .navlv2 {width: 80.8px;border-top:1px solid #797979;}\n .rsearch {width: 241.8px;border-right:0px;border-top:1px solid #797979;}\n #newnav .boomed a,#newnav .boom a:hover {background-color:#EC7F27;color: #FFFFFF;}\n #newnav .new a:hover,#newnav .newed a {background:#D50404}\n .rsbox {width:205px;}\n #newnav .usa a:hover,#newnav .usaed a {background-color: #ff0f0f;}\n #newnav .usacity a:hover,#newnav .usacityed a {background-color: #2113bf;}\n .usacity,.usacityed,.usa,.usaed {display:none}\n #newnav .show {display:block;}\n li.usacityed.show ~ li.usa.show ~ li.rsearch {width:79.8px}\n li.usacityed.show ~ li.usa.show ~ li.rsearch .rsbox {width:43px}\n li.usacity.show ~ li.usaed.show ~ li.rsearch {width:79.8px}\n li.usacity.show ~ li.usaed.show ~ li.rsearch .rsbox {width:43px} \n li.usacity ~ li.usaed.show ~ li.rsearch {width:160.8px}\n li.usacity ~ li.usaed.show ~ li.rsearch .rsbox {width:124px}\n li.usacity ~ li.usa.show ~ li.rsearch {width:160.8px}\n li.usacity ~ li.usa.show ~ li.rsearch .rsbox {width:124px}\n li.usacity.show ~ li.usa.show ~ li.rsearch {width:79.8px}\n li.usacity.show ~ li.usa.show ~ li.rsearch .rsbox {width:43px} \n .rtddt time font font {margin-right: -20px;}\n .rtddt.sp_ad font font {margin-right: 0px;}\n .rtddt h2 font {margin-right: 0px;display: inline-block;padding-bottom: 1px;} \n .rtddt h1 font {display: inline-block;margin-right:0px;}\n]]></style>\n<nav id=\"realnav\">\n <div id=\"newnav\">\n <ul>\n <li id=\"ny\" class=\"usacity navlv2\"><a title=\"紐約\" href=\"/realtimenews/section/ny/\">紐約</a></li>\n <li id=\"sf\" class=\"usacity navlv2\"><a title=\"舊金山\" href=\"/realtimenews/section/sf/\">舊金山</a></li>\n <li id=\"la\" class=\"usacity navlv2\"><a title=\"洛杉磯\" href=\"/realtimenews/section/la/\">洛杉磯</a></li>\n <li id=\"us\" class=\"usa navlv2\"><a title=\"美國\" href=\"/realtimenews/section/us/\">美國</a></li>\n <li class=\"newed navlv2\"><a title=\"最新\" href=\"/realtimenews/section/new/\">最新</a></li>\n <li class=\"recommend navlv2\"><a title=\"焦點\" href=\"/realtimenews/section/recommend/\">焦點</a></li>\n <li class=\"hot navlv2\"><a title=\"熱門\" href=\"/realtimenews/section/hot/\">熱門</a></li>\n <li class=\"boom navlv2\"><a title=\"爆社\" href=\"http://www.appledaily.com.tw/complainevent\" target=\"_blank\">爆社</a></li>\n <li class=\"zoo navlv2\"><a title=\"動物\" href=\"/realtimenews/section/animal/\">動物</a></li>\n <li class=\"rsea navlv2\"><a title=\"副刊\" href=\"/realtimenews/section/strange/\">副刊</a></li>\n <li class=\"ccc navlv2\"><a title=\"3C\" href=\"/realtimenews/section/3c/\">3C</a></li> \n <li class=\"video navlv2\"><a title=\"影片\" href=\"/realtimenews/section/video/\">影片</a></li>\n <li class=\"hotg navlv2\"><a title=\"正妹\" href=\"/realtimenews/section/beauty/\">正妹</a></li>\n <li class=\"sport navlv2\"><a title=\"體育\" href=\"/realtimenews/section/sports/\">體育</a></li>\n <li class=\"fun navlv2\"><a title=\"壹週刊\" href=\"/realtimenews/section/nextmag/\">壹週刊</a></li>\n <li class=\"forum navlv2\"><a title=\"媒陣\" href=\"/realtimenews/forum/istyle/new/#collaboration\">媒陣</a></li>\n <li class=\"enter navlv2\"><a title=\"娛樂\" href=\"/realtimenews/section/entertainment/\">娛樂</a></li> \n <li class=\"fashion navlv2\"><a title=\"時尚\" href=\"/realtimenews/section/fashion/\">時尚</a></li>\n <li class=\"life navlv2\"><a title=\"生活\" href=\"/realtimenews/section/life/\">生活</a></li>\n <li class=\"soci navlv2\"><a title=\"社會\" href=\"/realtimenews/section/local/\">社會</a></li>\n <li class=\"inter navlv2\"><a title=\"國際\" href=\"/realtimenews/section/international/\">國際</a></li>\n <li class=\"business navlv2\"><a title=\"財經\" href=\"/realtimenews/section/finance/\">財經</a></li>\n <li class=\"house navlv2\"><a title=\"地產\" href=\"/realtimenews/section/property/\">地產</a></li>\n <li class=\"polit navlv2\"><a title=\"政治\" href=\"/realtimenews/section/politics/\">政治</a></li>\n <li class=\"blog navlv2\"><a title=\"論壇\" href=\"/realtimenews/section/forum/\">論壇</a></li> \n <li class=\"rsearch\">\n <form name=\"searchform\" id=\"searchform\" action=\"http://search.appledaily.com.tw/appledaily/search\" method=\"POST\">\n <input type=\"hidden\" name=\"searchType\" value=\"text\"/>\n <input type=\"hidden\" name=\"searchMode\" value=\"Sim\"/>\n <input type=\"text\" name=\"querystrS\" id=\"search\" class=\"rsbox\"/>\n <input type=\"submit\" value=\"\" class=\"rsbtn\"/>\n </form>\n </li>\n <div style=\"clear:both\"/>\n </ul>\n </div>\n</nav>\n<script><![CDATA[\n if (GeoDFP['CC'] == 'US') {\n switch(GeoDFP['D']) {\n case '803' :\n $('#la').addClass(\"show\");\n break;\n case '807' :\n $('#sf').addClass(\"show\");\n break;\n case '501' :\n $('#ny').addClass(\"show\");\n break;\n }\n $('#us').addClass(\"show\");\n $('#USlocate').show(); \n $('#googletranslate').show(); \n }\n function chgUSCat(strzone){ \n if (strzone!='0') {\n var GeoUSDFP = {};\n GeoJson = JSON.parse($.cookie('GeoDFP'));\n if(GeoJson){\n GeoUSDFP['CC'] = GeoJson['DFP']['CC'];\n GeoUSDFP['S'] = GeoJson['DFP']['S']; \n switch(strzone) {\n case 'la' :\n GeoUSDFP['D'] = '803';\n break;\n case 'sf' :\n GeoUSDFP['D'] = '807';\n break;\n case 'ny' : \n GeoUSDFP['D'] = '501';\n break;\n } \n\n $.cookie('GeoDFP', JSON.stringify({\"DFP\":GeoUSDFP}),{expires: 7, path: '/' });\t\t\t\t\t\t\t \n location.href = \"/realtimenews/section/\"+strzone;\n }\n } \n }\n]]></script> \n <div class=\"soil\">\n <section id=\"leaderboard\" class=\"ads\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('leaderboard');})]]></script></section>\n <article id=\"maincontent\" class=\"vertebrae\">\n <style><![CDATA[#hotnewsbox{ background:url(\"http://twimg.edgesuite.net/appledaily/images/yellow_news.gif\") no-repeat; height:36px; padding:14px 0 0 134px}]]></style> <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/jquery.textslider.min.js\"/>\n <style><![CDATA[\n .slideText { position: relative; overflow: hidden; height: 32px; }\n .slideText ul, .slideText li {margin: 0;padding: 0;list-style: none;}\n .slideText ul {position: absolute;}\n .slideText li a {font-size:20px;color:#000000;display: block;overflow: hidden;height: 30px;line-height: 25px;text-decoration: none;}\n .slideText li a:hover {text-decoration: underline;}\n #hotnewsbox2 {background: url(\"http://twimg.edgesuite.net/appledaily/images/red_recommend.gif\") no-repeat;height: 36px;padding: 14px 0 0 195px;}\n ]]></style>\n <script type=\"text/javascript\"><![CDATA[\n $(document).ready(function(){\n $('.slideText').textslider({\n direction : 'scrollUp',\n scrollNum : 1,\n scrollSpeed : 800,\n pause : 3200\n });\n });\n ]]></script>\n <div id=\"hotnewsbox\">\n <div class=\"slideText\">\n <ul>\n <li><a href=\"/realtimenews/article/politics/20160710/904866/\">感同身受 賴清德捐月薪助台東重建</a></li> </ul>\n </div>\n </div>\n \n <div class=\"thoracis\">\n <style><![CDATA[\n /* firewire */\n .firewire-container {width: 650px; height: 100px; overflow: hidden; margin-bottom: 10px;}\n #firewire .item {width: 650px; height: 100px; background: #dddddd url(http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/ajax-loader.gif) center center no-repeat;}\n #firewire .item a {width: 100%; height: 100%; display: block;}\n #firewire .item img {display: block; border: none;}\n /* override */\n #splash { margin-bottom: 10px;}\n .hotkeynews {background-color:#e0e0e0}\n .hotkeynews time {color:#ff534f}\n .hotkeynews li {background-color:white;margin-bottom:2px;}\n .topheaddr {background:#cc0000;height:40px;position:relative;margin-top:-15px}\n .topheadrr {width:134px;height:40px;background:#ff1a14;float:left;}\n .topheadrr h1 {display:block;font-size:16px;color:white;padding:12px 0px 0px 19px;}\n .topheaddr time {float:right;color:white;padding:13px 19px 0px 0px;}\n .botlinerr {background:#cc0000;height:5px}\n .botlinedr {width:134px;height:5px;background:#ff1a14}\n .dddd {margin: 0.65em 0 0.65em;}\n ]]></style>\n <section id=\"splash\">\n <div id=\"carousel\">\n <div class=\"item\">\n <a href=\"/realtimenews/article/politics/20160710/904850/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/c7e2b47b12ef5cc44533687ac29b1abf.jpg\" alt=\"遭質疑沒趕回台東救災 市長張國洲鞠躬道歉\" tcode=\"遭質疑沒趕回台東救災 市長張國洲鞠躬道歉\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/entertainment/20160710/904717/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/8a35988beb65c24903f86af0f76444e0.jpg\" alt=\"【獨家直擊】仔仔愛撫孕妻 喻虹淵6月肚曝光\" tcode=\"【獨家直擊】仔仔愛撫孕妻 喻虹淵6月肚曝光\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904791/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/dea5fd79783d4db8f796e837bf61f962.jpg\" alt=\"台東市長好強!救災慢半拍 出國快一拍\" tcode=\"台東市長好強!救災慢半拍 出國快一拍\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904844/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/17d4e0693a5e67fa3747032817f372ad.jpg\" alt=\"不滿挨告 男赴鄰居家潑油縱火2命危\" tcode=\"不滿挨告 男赴鄰居家潑油縱火2命危\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904642/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/43b014aca2d42b8f192742fae7dd8b08.jpg\" alt=\"【直擊】噁爛油條廠 髒油如地溝水\" tcode=\"【直擊】噁爛油條廠 髒油如地溝水\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904811/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/3daedddc9f26023913ef7f3baa6fa5a5.jpg\" alt=\"3男沒義氣撞車落跑 獨剩熱褲妹遭警逮\" tcode=\"3男沒義氣撞車落跑 獨剩熱褲妹遭警逮\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/life/20160710/904837/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/56dbdac2e085660e9edb8eee5d9c43cc.jpg\" alt=\"熱帶低壓環流影響 彰化以南8縣市發豪雨特報\" tcode=\"熱帶低壓環流影響 彰化以南8縣市發豪雨特報\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/international/20160710/904797/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/9ef035bbca31f0a64a8eb75574ec54c2.jpg\" alt=\"逾412萬人請願 英政府拒辦第2次脫歐公投\" tcode=\"逾412萬人請願 英政府拒辦第2次脫歐公投\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/life/20160710/904762/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/333a0cc987220263d2341d72e6170d30.jpg\" alt=\"吐血!民眾買不到票 普悠瑪號卻只坐20人\" tcode=\"吐血!民眾買不到票 普悠瑪號卻只坐20人\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/strange/20160710/904199/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/5043261b541f9024006e1577aacd8e5e.jpg\" alt=\"挑戰海祭 24歲年輕人締造10萬人音樂祭\" tcode=\"挑戰海祭 24歲年輕人締造10萬人音樂祭\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/life/20160710/904030/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/0a430c1394e5d11192f3e5875aede629.jpg\" alt=\"【我和你不一樣】別人眼中的折磨 是我的解脫\" tcode=\"【我和你不一樣】別人眼中的折磨 是我的解脫\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904106/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/ecc4bbeebf9716ff9274175a2c1c8f56.jpg\" alt=\"【法律問蘋果】被列警示帳戶 想解禁看這邊\" tcode=\"【法律問蘋果】被列警示帳戶 想解禁看這邊\"/>\n </a>\n </div>\n </div>\n <div class=\"xPrev\">上一則</div>\n <div class=\"xNext\">下一則</div>\n </section>\n <!--十月圍城--> \n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/property/js/jquery.carouFredSel-6.2.1.js\"/>\n<style><![CDATA[\n#october {width:650px;height:200px;overflow:hidden;}\n#october .slidebox {width:650px;height:200px;}\n#october .slidebox .pics {float:left;width:650px;height:183px;overflow:hidden;margin:10px 2px 10px 2px;}\n#october .slidebox .pics img {max-width:650px;height:auto;}\n]]></style>\n <div style=\"width:100%;margin-top:-10px;\"/>\n <div id=\"october\"> \n <div class=\"slidebox\"> \n <div class=\"pics\">\n <a href=\"http://goo.gl/FcdlZ8\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/data/oct/eab1a5f30b22fb9673b2128c78396460.jpg\"/></a>\n </div>\t\t\t\t \n </div>\n <div class=\"slidebox\"> \n <div class=\"pics\">\n <a href=\"http://www.appledaily.com.tw/column/index/115/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/data/oct/d8947e2b2c5440f60d9affb0c1168044.jpg\"/></a>\n </div>\t\t\t\t \n </div>\n <div class=\"slidebox\"> \n <div class=\"pics\">\n <a href=\"http://goo.gl/8eeapZ\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/data/oct/06d3e6cfd34121861d282fbcf82c1d17.jpg\"/></a>\n </div>\t\t\t\t \n </div>\n \n </div>\t\t\t\n<script type=\"text/javascript\"><![CDATA[\n$(document).ready(function() {\n $('#october').carouFredSel({\n items: 1,\n direction: \"up\",\n infinite: true,\n circular: true,\n scroll: {\n items: 1,\n duration: 1250,\n timeoutDuration: 2500,\n easing: 'swing',\n pauseOnHover: 'immediate' \n },\n });\n});\n]]></script>\t\t \n <!--十月圍城--> \n <style><![CDATA[\n .realword {padding-top:5px;padding-bottom:30px;}\n .realword .link1 a {color:red;font-size:22px;font-weight:bold;}\n .realword .link1 {float:left;width:320px;text-align:center;}\n .rtddd .sp_ad {padding: 0.625em 20px;}\n .rtddd .sp_ad time {display: inline;font-size: 1em;margin-right: 20px;vertical-align: middle;}\n .rtddd .sp_ad h2 {background-color:#049000;display: inline;font-size: 1em;margin-right: 20px;vertical-align: middle;}\n .rtddd .sp_ad h1 {display: inline;}\n .rtddd .sp_ad h1 a {display: inline;font-size:16px;color:black;padding-left: 0px;}\n .rtddd .ccc h2 {background-color: #318597; padding:2px 14px;}\n ]]></style>\t\t\t\t\t\n <script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('minibar');})]]></script>\n <div class=\"abdominis rlby clearmen\"> \n <h1 class=\"dddd\"><time>2016 / 07 / 10</time></h1><ul class=\"rtddd slvl\"> <li class=\"rtddt enter\">\n <a href=\"/realtimenews/article/entertainment/20160710/904853/林心如霍建華黏TT 吃完家宴看電影\" target=\"_blank\">\n <time>09:57</time>\n <h2>娛樂</h2>\n <h1><font color=\"#ff0000\">林心如霍建華黏TT 吃完家宴看電影(39)</font></h1>\n </a>\n </li>\n <li class=\"rtddt local even\">\n <a href=\"/realtimenews/article/local/20160710/904862/驚!化學車側翻鹽酸外洩 駕駛當場死亡\" target=\"_blank\">\n <time>09:56</time>\n <h2>社會</h2>\n <h1><font color=\"#ff0000\">驚!化學車側翻鹽酸外洩 駕駛當場死亡(21)</font></h1>\n </a>\n </li>\n <li class=\"rtddt polit\">\n <a href=\"/realtimenews/article/politics/20160710/904863/尼伯特肆虐 國軍運補口糧協助綠島居民\" target=\"_blank\">\n <time>09:56</time>\n <h2>政治</h2>\n <h1><font color=\"#383c40\">尼伯特肆虐 國軍運補口糧協助綠島居民(120)</font></h1>\n </a>\n </li>\n <li class=\"rtddt sport even\">\n <a href=\"/realtimenews/article/sports/20160710/904869/<U+200B>肥約到手 哈登諂媚:休士頓是我的家\" target=\"_blank\">\n <time>09:56</time>\n <h2>體育</h2>\n <h1><font color=\"#ff0000\"><U+200B>肥約到手 哈登諂媚:休士頓是我的家 (36)</font></h1>\n </a>\n </li>\n <li class=\"rtddt polit\">\n <a href=\"/realtimenews/article/politics/20160710/904864/東部視察颱風災情 蔡總統:全力協助重建\" target=\"_blank\">\n <time>09:51</time>\n <h2>政治</h2>\n <h1><font color=\"#383c40\">東部視察颱風災情 蔡總統:全力協助重建(182)</font></h1>\n </a>\n </li>\n <li class=\"rtddt polit even\">\n <a href=\"/realtimenews/article/politics/20160710/904866/感同身受 賴清德捐月薪助台東重建\" target=\"_blank\">\n <time>09:50</time>\n <h2>政治</h2>\n <h1><font color=\"#ff0000\">感同身受 賴清德捐月薪助台東重建(96)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life\">\n <a href=\"/realtimenews/article/life/20160710/904867/32國軍馳援綠島 總統下午先赴蘭嶼勘災 \" target=\"_blank\">\n <time>09:50</time>\n <h2>生活</h2>\n <h1><font color=\"#ff0000\">32國軍馳援綠島 總統下午先赴蘭嶼勘災 (563)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life even\">\n <a href=\"/realtimenews/article/life/20160710/904861/尼伯特受災民眾 公路監理業務可延期辦理\" target=\"_blank\">\n <time>09:49</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">尼伯特受災民眾 公路監理業務可延期辦理(69)</font></h1>\n </a>\n </li>\n <li class=\"rtddt nextmag hsv\">\n <a href=\"/realtimenews/article/nextmag/20160710/904530/【壹週刊】【大明星KTV】比起〈鬼迷心竅〉 林憶蓮這首歌更適合華心CP\" target=\"_blank\">\n <time>09:48</time>\n <h2>壹週刊</h2>\n <h1><font color=\"#383c40\">【壹週刊】【大明星KTV】比起〈鬼迷心竅...(321)</font></h1>\n </a>\n </li>\n <li class=\"rtddt busi even\">\n <a href=\"/realtimenews/article/finance/20160710/904857/歷史新高! 國人貧富差距飆至112倍\" target=\"_blank\">\n <time>09:45</time>\n <h2>財經</h2>\n <h1><font color=\"#ff0000\">歷史新高! 國人貧富差距飆至112倍(1108)</font></h1>\n </a>\n </li>\n <li class=\"rtddt inter\">\n <a href=\"/realtimenews/article/international/20160710/904865/【央廣RTI】伊收復北部空軍基地IS再敗退\" target=\"_blank\">\n <time>09:45</time>\n <h2>國際</h2>\n <h1><font color=\"#383c40\">【央廣RTI】伊收復北部空軍基地 IS再...(0)</font></h1>\n </a>\n </li>\n <li class=\"rtddt inter even\">\n <a href=\"/realtimenews/article/international/20160710/904860/<U+200B>西班牙奔牛節傳性侵 5男涉輪暴被捕\" target=\"_blank\">\n <time>09:41</time>\n <h2>國際</h2>\n <h1><font color=\"#ff0000\"><U+200B>西班牙奔牛節傳性侵 5男涉輪暴被捕(981)</font></h1>\n </a>\n </li>\n <li class=\"rtddt sport\">\n <a href=\"/realtimenews/article/sports/20160710/904858/<U+200B>4年38億 哈登與火箭簽新約\" target=\"_blank\">\n <time>09:40</time>\n <h2>體育</h2>\n <h1><font color=\"#ff0000\"><U+200B>4年38億 哈登與火箭簽新約 (1443)</font></h1>\n </a>\n </li>\n <li class=\"rtddt busi even\">\n <a href=\"/realtimenews/article/finance/20160710/903962/【財訊】黑天鵝亂入,當外資大賣台積電 就是進場好時機\" target=\"_blank\">\n <time>09:39</time>\n <h2>財經</h2>\n <h1><font color=\"#383c40\">【財訊】黑天鵝亂入,當外資大賣台積電 就...(1384)</font></h1>\n </a>\n </li>\n <li class=\"rtddt enter hsv\">\n <a href=\"/realtimenews/article/entertainment/20160710/904649/人妻女星修修臉上癮 明明變個人還裝傻\" target=\"_blank\">\n <time>09:36</time>\n <h2>娛樂</h2>\n <h1><font color=\"#ff0000\">人妻女星修修臉上癮 明明變個人還裝傻(2711)</font></h1>\n </a>\n </li>\n <li class=\"rtddt inter even\">\n <a href=\"/realtimenews/article/international/20160710/904859/【央廣RTI】日參議院選舉執政黨可望勝選\" target=\"_blank\">\n <time>09:33</time>\n <h2>國際</h2>\n <h1><font color=\"#383c40\">【央廣RTI】日參議院選舉 執政黨可望勝...(92)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life\">\n <a href=\"/realtimenews/article/life/20160710/904855/開齋節最後一天 台北火車站大廳湧入穆斯林\" target=\"_blank\">\n <time>09:31</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">開齋節最後一天 台北火車站大廳湧入穆斯林(1653)</font></h1>\n </a>\n </li>\n <li class=\"rtddt nextmag even hsv\">\n <a href=\"/realtimenews/article/nextmag/20160710/904856/【壹週刊】在朝鮮平壤生存第一守則是鞠躬獻花\" target=\"_blank\">\n <time>09:26</time>\n <h2>壹週刊</h2>\n <h1><font color=\"#383c40\">【壹週刊】在朝鮮平壤 生存第一守則是鞠...(503)</font></h1>\n </a>\n </li>\n <li class=\"rtddt local hsv\">\n <a href=\"/realtimenews/article/local/20160710/904844/【更新】不滿挨告 男赴鄰居家潑油縱火2命危\" target=\"_blank\">\n <time>09:24</time>\n <h2>社會</h2>\n <h1><font color=\"#ff0000\">【更新】不滿挨告 男赴鄰居家潑油縱火2命...(10567)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life even hsv\">\n <a href=\"/realtimenews/article/life/20160710/897973/西南風增強 中南部防豪大雨\" target=\"_blank\">\n <time>09:23</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">西南風增強 中南部防豪大雨(773)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life hsv\">\n <a href=\"/realtimenews/article/life/20160710/904852/援助台東 新北市人車到位開始作業\" target=\"_blank\">\n <time>09:16</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">援助台東 新北市人車到位開始作業(1978)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life even\">\n <a href=\"/realtimenews/article/life/20160710/904803/【網路溫度計】夏天就是要去漁港啊!十大人氣觀光漁港攏底家!\" target=\"_blank\">\n <time>09:10</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">【網路溫度計】夏天就是要去漁港啊!十大人...(2117)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life hsv\">\n <a href=\"/realtimenews/article/life/20160710/904812/【更新】NMD潮鞋再發威 民眾徹夜排隊等搶購\" target=\"_blank\">\n <time>09:10</time>\n <h2>生活</h2>\n <h1><font color=\"#ff0000\">【更新】NMD潮鞋再發威 民眾徹夜排隊等...(7233)</font></h1>\n </a>\n </li>\n <li class=\"rtddt property even hsv\">\n <a href=\"/realtimenews/article/property/20160710/902559/「貓吉拉巡田水」 寵物賣屋超Q彈~\" target=\"_blank\">\n <time>09:09</time>\n <h2>地產</h2>\n <h1><font color=\"#383c40\">「貓吉拉巡田水」 寵物賣屋超Q彈~(676)</font></h1>\n </a>\n </li>\n <li class=\"rtddt enter\">\n <a href=\"/realtimenews/article/entertainment/20160710/904714/辣媽看球賽激吻男友 忘我親熱墨鏡都歪了\" target=\"_blank\">\n <time>09:05</time>\n <h2>娛樂</h2>\n <h1><font color=\"#ff0000\">辣媽看球賽激吻男友 忘我親熱墨鏡都歪了(8074)</font></h1>\n </a>\n </li>\n <li class=\"rtddt polit even\">\n <a href=\"/realtimenews/article/politics/20160710/904850/遭質疑沒趕回台東救災 市長張國洲鞠躬道歉\" target=\"_blank\">\n <time>09:05</time>\n <h2>政治</h2>\n <h1><font color=\"#ff0000\">遭質疑沒趕回台東救災 市長張國洲鞠躬道歉(24017)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life\">\n <a href=\"/realtimenews/article/life/20160710/904849/「未與市民共患難」 台東市長道歉了\" target=\"_blank\">\n <time>09:02</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">「未與市民共患難」 台東市長道歉了(2161)</font></h1>\n </a>\n </li>\n <li class=\"rtddt busi even hsv\">\n <a href=\"/realtimenews/article/finance/20160710/904041/【實用文】帥哥主廚教你3招挑好蝦\" target=\"_blank\">\n <time>08:52</time>\n <h2>財經</h2>\n <h1><font color=\"#383c40\">【實用文】帥哥主廚教你3招挑好蝦(1471)</font></h1>\n </a>\n </li>\n <li class=\"rtddt inter hsv\">\n <a href=\"/realtimenews/article/international/20160710/904833/<U+200B>達拉斯警方又接獲威脅 升高安全戒備\" target=\"_blank\">\n <time>08:49</time>\n <h2>國際</h2>\n <h1><font color=\"#383c40\"><U+200B>達拉斯警方又接獲威脅 升高安全戒備(2458)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life even hsv\">\n <a href=\"/realtimenews/article/life/20160710/904837/【有片】熱帶低壓環流影響 彰化以南8縣市發豪雨特報\" target=\"_blank\">\n <time>08:48</time>\n <h2>生活</h2>\n <h1><font color=\"#ff0000\">【有片】熱帶低壓環流影響 彰化以南8縣市...(23156)</font></h1>\n </a>\n </li>\n </ul> \n <nav class=\"page_switch lisw fillup\" style=\"margin-top:0em;margin-bottom:1em;text-align:center\">\n <a href=\"/realtimenews/section/new/1\" title=\"1\" class=\"enable\">1</a><a href=\"/realtimenews/section/new/2\" title=\"2\">2</a><a href=\"/realtimenews/section/new/3\" title=\"3\">3</a><a href=\"/realtimenews/section/new/4\" title=\"4\">4</a><a href=\"/realtimenews/section/new/5\" title=\"5\">5</a><a href=\"/realtimenews/section/new/6\" title=\"6\">6</a><a href=\"/realtimenews/section/new/7\" title=\"7\">7</a><a href=\"/realtimenews/section/new/8\" title=\"8\">8</a><a href=\"/realtimenews/section/new/9\" title=\"9\">9</a><a href=\"/realtimenews/section/new/10\" title=\"10\">10</a><a href=\"/realtimenews/section/new/11\" title=\"下10頁\">下10頁</a> </nav>\n <span class=\"clear man\"/>\n </div>\n </div>\n <div class=\"abdominis\"/>\n </article>\n <aside id=\"sitesidecontent\" class=\"manu lvl\">\n <div id=\"rectangleAD1\" class=\"ads rtb rtf\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('rectangleAD1');})]]></script></div>\n <div id=\"rectangleAD2\" class=\"ads rtb\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('rectangleAD2');})]]></script></div>\n <section id=\"section-hot-sidebox\" class=\"shsb slvl clearmen shsbsports\"><header><h1>體育最<U+00A0>Hot</h1><span><a target=\"_blank\" href=\"/appledaily/hotdaily/sports\">看更多</a></span></header><article><ul><li><h2><a href=\"/appledaily/article/sports/20160710/37301993/hotdailyart_right\">好加在 再見接殺 林哲瑄救...</a></h2><span>8312</span></li><li><h2><a href=\"/appledaily/article/sports/20160710/37302101/hotdailyart_right\">給不了豪神先發 黃蜂只能說...</a></h2><span>7871</span></li><li><h2><a href=\"/appledaily/article/sports/20160710/37302087/hotdailyart_right\">李承哲 一隻腳拼SBL 車...</a></h2><span>6365</span></li><li><h2><a href=\"/appledaily/article/sports/20160710/37302105/hotdailyart_right\">騎士教頭露口風 搶台灣女婿...</a></h2><span>5580</span></li><li><h2><a href=\"/appledaily/article/sports/20160710/37302019/hotdailyart_right\">秋山秀身手 球快過郭總 鄭...</a></h2><span>4966</span></li></ul></article></section><section id=\"facebookbox\" class=\"fbbx slvl clearmen\"> \n <header> \n <h1>Facebook<U+00A0></h1> \n <a id=\"fblikebtn\" class=\"on\">蘋果粉絲團</a> \n </header>\t\t \n <article> \n <div id=\"fb-root\"/> \n <script language=\"javascript\"><![CDATA[\r\n (function(d, s, id) {\r\n var js, fjs = d.getElementsByTagName(s)[0];\r\n if (d.getElementById(id)) return;\r\n js = d.createElement(s); js.id = id;\r\n js.src = \"//connect.facebook.net/zh_TW/all.js#xfbml=1\";\r\n fjs.parentNode.insertBefore(js, fjs);\r\n }(document, 'script', 'facebook-jssdk'));\r\n ]]></script> \n <div id=\"changeFBlike\"> \n <div class=\"fb-like-box\" data-href=\"http://www.facebook.com/appledaily.tw\" data-width=\"300\" data-height=\"370\" data-show-faces=\"false\" data-stream=\"true\" data-show-border=\"true\" data-header=\"false\"/> \n </div> \n </article> \n</section> </aside>\n </div>\n <div><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('div-ad-bottom');})]]></script></div>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/dateinput_skin.css\"/> \n<div class=\"abkct clearmen\"><a onclick=\"javascript:window.scroll(0,0)\" class=\"abktp\">回到最上面</a></div> \n<section id=\"extras\" class=\"fexbr\"> \n <div class=\"sqzer fillup\"> \n <a href=\"/index/dailyquote/\" title=\"每日一句\" class=\"dyw\"><span data-tooltip=\"每天一句好話\"/>每日一句</a> \n <a href=\"/index/lottery\" title=\"樂透發票\" class=\"lnr\"><span data-tooltip=\"看看你手氣\"/>樂透發票</a> \n <a href=\"#\" title=\"線上美語\" class=\"oneg\" onclick=\"JavaScript:window.open('/index/englishlearning/','','width=650,height=495')\"><span data-tooltip=\"學習英文\"/>線上美語</a> \n <a href=\"/index/weather\" title=\"天氣\" class=\"wkw\"><span data-tooltip=\"今天一周天氣預報\"/>天氣</a> \n <a href=\"/index/complain\" title=\"爆料投訴\" class=\"rpter\"><span data-tooltip=\"爆料給蘋果\"/>爆料投訴</a> \n <a href=\"/index/prize\" title=\"中獎名單\" class=\"itul\"><span data-tooltip=\"蘋果送大獎!\">中獎名單</span></a> \n <a href=\"/index/ticket\" title=\"贈獎活動\" class=\"pguss\"><span data-tooltip=\"贈獎活動\"/>贈獎活動</a> \n <a href=\"/index/mobileguide\" title=\"行動版\" class=\"wmvs\"><span data-tooltip=\"行動版\">行動版</span></a> \n </div> \n</section> \n \n<footer id=\"corpfoot\"> \n <div class=\"sqzer\"> \n <figure><a href=\"http://www.nextdigital.com.hk/investor/\"><img src=\"http://twimg.edgesuite.net/images/NextDigital/logo_NextMedia_m.png\"/></a></figure> \n <section id=\"corpcompanies\" class=\"clearmen\"> \n <a href=\"/\" class=\"first\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_AppleDaily.png\" alt=\"蘋果日報 AppleDaily\"/></a> \n <a href=\"/animation/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_AnimatedNews.png\" alt=\"動新聞\"/></a> \n <a href=\"http://www.applelive.com.tw/livechannel/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/applelive.gif\" alt=\"蘋果Live\"/></a> \n <a href=\"http://apple360.appledaily.com.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/360logo.png\" alt=\" 蘋果360\" width=\"83\" height=\"30\"/></a> \n <a href=\"http://sharpdaily.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_SharpDaily.png\" alt=\"爽報\"/></a> \n <a href=\"http://www.nextmag.com.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_NextMag.png\" alt=\"壹周刊\"/></a> \n <a href=\"http://www.eat-travel.com.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_eatintravel.png\" alt=\"飲食男女\"/></a> \n <a href=\"http://fashion.appledaily.com.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/applefashion_website_head_39x30.png\" alt=\"蘋果時尚\"/></a> \n <a href=\"http://www.tomonews.com/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_tomonews_s.png\" alt=\"Tomonews\"/></a> \n <a href=\"https://www.youtube.com/user/twappledaily/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_youtube.png\" alt=\"Youtube\"/></a> \n <a href=\"/teded\" class=\"last\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ted.png\" alt=\"Ted\"/></a> \n </section> \n \n <section id=\"corpinfo\" class=\"fillip\"> \n <a href=\"/rss/\" style=\"color:red\">RSS</a>\t\t\t\t\t \n <a href=\"/index/aboutus/\">了解蘋果日報</a> \n <a href=\"/index/contactus/\">聯絡我們</a> \n <a href=\"/adguide\" target=\"_blank\">廣告刊登</a> \n <a href=\"/index/faq/\">常見問題</a> \n <a href=\"/index/sitemap/\">網站導覽</a> \n <a href=\"/index/termofuse/\">使用條款</a> \n <a href=\"/index/authorization/\">授權申請程序</a> \n <a href=\"/index/privacy/\">隱私權說明</a> \n <a href=\"/index/disclaimer/\">免責與分級</a> \n <a href=\"/index/community/\">蘋果社群</a> \n <a href=\"http://www.facebook.com/nextmediastudent/\" target=\"_blank\">校園培果計畫</a> \n <a href=\"http://www.104.com.tw/jobbank/custjob/index.php?r=cust&j=5e3a4326486c3e6a30323c1d1d1d1d5f2443a363189j01&jobsource=checkc\" target=\"_blank\">蘋果徵才</a> \n <a href=\"/index/subscribe\" class=\"last\">訂閱蘋果</a> \n </section> \n <p id=\"copyright\">c 2016 www.appledaily.com.tw Limited. All rights reserved. 台灣蘋果日報 版權所有 不得轉載</p> \n </div> \n</footer> \n<link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/appledaily.backtotop.css\"/> \n<script src=\"http://twimg.edgesuite.net/appledaily/images/js/jquery.appledaily.backtotop.js\"/> \n<div class=\"back-to-top-side\"><a onclick=\"javascript:window.scroll(0,0)\" class=\"back-to-top-btn overcooked\">回到最上面</a></div><!-- .back-to-top-side --> \n<script type=\"text/javascript\"><![CDATA[\r\n $(document).ready(function() {\r\n var opacity = 0.5,\r\n toOpacity = 1,\r\n duration = 250;\r\n $('.opacity').css('opacity', opacity).hover(function() {\r\n $(this).fadeTo(duration, toOpacity);\r\n }, function() {\r\n $(this).fadeTo(duration, opacity);\r\n });\r\n \r\n $(window).scroll(function() {\r\n if($(this).scrollTop()>130&&($(this).scrollTop()-(-800)<$(document).height()-350)){\r\n $('#door').css('position','fixed').css('top','-45px');\r\n }else{\r\n $('#door').css('position','relative').css('top','0px');\r\n }\r\n });\r\n });\r\n]]></script> \n \n<!-- Google Analytics --> \n<script><![CDATA[\r\n (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\r\n (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\r\n m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\r\n })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\r\n\r\n ga('create', 'UA-2067247-40', 'auto', {'sampleRate':1});\r\n ga('require', 'linkid', 'linkid.js');\r\n ga('require', 'displayfeatures');\r\n \r\n]]></script> \n<noscript> \n <iframe src=\"//www.googletagmanager.com/ns.html?id=GTM-P5MXMC\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"/> \n</noscript> \n<script><![CDATA[\r\n dataLayer = [{\r\n 'pageLevel' : 'Listing',\r\n 'videoArticle': 'non-video',\r\n 'publishDay': '', \r\n 'columnist' : '', \r\n 'column' : '' \r\n }];\r\n \r\n (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\r\n new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\r\n j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\r\n })(window,document,'script','dataLayer','GTM-P5MXMC');\r\n]]></script> \n<div id=\"nxm_iframeDiv\" style=\"display:none\"/> \n<div id=\"nxm_vtrk_iframeDiv\" style=\"display:none\"/> \n<!--page idle--> \n<link href=\"http://twimg.edgesuite.net/appledaily/images/adidle/css/Ted_fancybox.css\" rel=\"stylesheet\" type=\"text/css\"/> \n<script src=\"http://twimg.edgesuite.net/appledaily/images/adidle/js/Ted_plugin.js\"/> \n<script src=\"http://twimg.edgesuite.net/appledaily/images/adidle/js/Ted_adidle.js\"/> \n<script language=\"JavaScript\"><![CDATA[\r\n var intRand = Math.floor((Math.random()*10))%2;\r\n var strHtml = 'Ted';\r\n if(intRand>0){\r\n strHtml = 'infographic';\r\n }\r\n document.write('<a class=\"pageidle\" data-fancybox-type=\"iframe\" href=\"http://www.appledaily.com.tw/'+strHtml+'_adidle.html#'+Math.random()+'\"></a>');\r\n]]></script> \n<!--page idle--> \n </div>\n </div>\n <script type=\"text/javascript\" src=\"https://apis.google.com/js/plusone.js\"/>\n <script><![CDATA[\n $(document).ready(function($) {\n /* main carousel */\n $('#carousel').on('onInitAfter',function(e){\n $(this).find('.owl-dots').append( '<span class=\"masker\"></span>' );\n }).owlCarousel({\n mouseDrag:false,\n touchDrag:true,\n pullDrag:false,\n navText:['下一則','上一則'],\n nav:false,\n navSpeed:500,\n dotsSpeed:500,\n dots:false,\n items:1,\n autoplay:true,\n autoplayHoverPause:false,\n autoplayTimeout: 5000,\n lazyLoad:true,\n info: (typeof getInfo == 'function') ? getInfo : {},\n loop:true\n }).mouseenter(function() {\n $(this).addClass('on');\n $(this).trigger('pause.owl');\n $('#splash').addClass('on');\n }).mouseleave(function() {\n $(this).removeClass('on');\n $(this).trigger('autoplay.owl');\n $('#splash').removeClass('on');\n });\n\n $('.xPrev').click(function() {\n $('#carousel').trigger('prev.owl');\n });\n $('.xNext').click(function() {\n $('#carousel').trigger('next.owl');\n });\n\n $('.xPrev, .xNext').mouseenter(function() {\n $('#carousel').addClass('on');\n $('#carousel').trigger('pause.owl');\n $('#splash').addClass('on');\n }).mouseleave(function() {\n $('#carousel').removeClass('on');\n $('#carousel').trigger('autoplay.owl');\n $('#splash').removeClass('on');\n });\n\n /* firewire */\n $('#firewire').owlCarousel({\n mouseDrag:false,\n touchDrag:false,\n pullDrag:false,\n animateOut: 'slideOutDown-100',\n animateIn: 'slideInDown-100',\n nav:false,\n navSpeed:1000,\n dots:false,\n items:1,\n autoplay:true,\n autoplayHoverPause:true,\n autoplayTimeout: 6000,\n lazyLoad:true,\n loop:true\n });\n\n });\n\n function getInfo(owlInfo){\n $('#carousel').data('currentPosition', owlInfo['currentPosition']);\n }\n\n $( document ).ready(function() {\n var mainImgs = $('#carousel').find('.owl-item').not('.cloned').find('.item').find('img');\n var mainLinks = $('#carousel').find('.owl-item').not('.cloned').find('.item').find('a');\n\n function trackHomeMainImg(action, label) {\n if ( ga ) ga('send', 'event', 'HomeMainImg', action, label);\n if (window['console'] !== undefined) { console.log('SendGA: '+action) };\n }\n\n function isAD(imgAlt) {\n return ((imgAlt) && (imgAlt.toUpperCase().substring(0,2)==\"AD\"));\n }\n\n function mainImgView(idx) {\n var imgAlt = $(mainImgs[idx]).attr('tcode');\n if (isAD(imgAlt)) trackHomeMainImg('views', imgAlt);\n }\n\n function mainImgClick(e) {\n var imgAlt = $(e.currentTarget).find('img').attr('tcode');\n if (isAD(imgAlt)) trackHomeMainImg('clicks', imgAlt);\n };\n\n $('#carousel').on('onTransitionEnd', function(e) {\n var idx = $('#carousel').data('currentPosition');\n if ($.isNumeric(idx)) mainImgView(idx);\n });\n\n /* entry track */\n if ($('#carousel')) mainImgView(0);\n\n /* bind click event */\n $('#carousel').find('.owl-item').find('.item').find('a').click(mainImgClick);\n\n });\n ]]></script>\n <!-- YAHOO AD -->\n <script type=\"text/javascript\"><![CDATA[\n var sectionCode = sectionCode || [];\n sectionCode.push(\"3fbb0747-092b-4c67-b6dc-c522d10c2475\");\n (function(){\n var script = document.createElement(\"script\");\n script.async = true;\n script.src = \"https://s.yimg.com/av/gemini/ga/gemini.js\";\n document.body.appendChild(script);\n })();\n ]]></script>\n <!-- YAHOO AD -->\n</body>\n</html>\n"
iconvlist()
## [1] "437" "850"
## [3] "852" "855"
## [5] "857" "860"
## [7] "861" "862"
## [9] "863" "865"
## [11] "866" "869"
## [13] "ANSI_X3.4-1968" "ANSI_X3.4-1986"
## [15] "ASCII" "ASMO-708"
## [17] "BIG-5" "BIG-FIVE"
## [19] "big5" "BIG5"
## [21] "big5-hkscs" "BIG5-HKSCS"
## [23] "big5hkscs" "BIG5HKSCS"
## [25] "CP-GR" "CP-IS"
## [27] "cp1025" "CP1125"
## [29] "CP1133" "CP1200"
## [31] "CP12000" "CP12001"
## [33] "CP1201" "CP1250"
## [35] "CP1251" "CP1252"
## [37] "CP1253" "CP1254"
## [39] "CP1255" "CP1256"
## [41] "CP1257" "CP1258"
## [43] "CP1361" "CP154"
## [45] "CP367" "CP437"
## [47] "CP50221" "CP51932"
## [49] "CP65001" "CP737"
## [51] "CP775" "CP819"
## [53] "CP850" "CP852"
## [55] "CP853" "CP855"
## [57] "CP857" "CP858"
## [59] "CP860" "CP861"
## [61] "CP862" "CP863"
## [63] "CP864" "CP865"
## [65] "cp866" "CP866"
## [67] "CP869" "CP874"
## [69] "cp875" "CP932"
## [71] "CP936" "CP949"
## [73] "CP950" "CSASCII"
## [75] "CSIBM855" "CSIBM857"
## [77] "CSIBM860" "CSIBM861"
## [79] "CSIBM863" "CSIBM864"
## [81] "CSIBM865" "CSIBM866"
## [83] "CSIBM869" "csISO2022JP"
## [85] "CSISOLATIN1" "CSPC775BALTIC"
## [87] "CSPC850MULTILINGUAL" "CSPC862LATINHEBREW"
## [89] "CSPC8CODEPAGE437" "CSPCP852"
## [91] "CSPTCP154" "CSWINDOWS31J"
## [93] "CYRILLIC-ASIAN" "DOS-720"
## [95] "DOS-862" "EUC-CN"
## [97] "euc-jp" "euc-kr"
## [99] "EUC-KR" "EUCCN"
## [101] "eucjp" "euckr"
## [103] "GB18030" "gb2312"
## [105] "GBK" "hz-gb-2312"
## [107] "IBM-CP1133" "IBM-Thai"
## [109] "IBM00858" "IBM00924"
## [111] "IBM01047" "IBM01140"
## [113] "IBM01141" "IBM01142"
## [115] "IBM01143" "IBM01144"
## [117] "IBM01145" "IBM01146"
## [119] "IBM01147" "IBM01148"
## [121] "IBM01149" "IBM037"
## [123] "IBM1026" "IBM273"
## [125] "IBM277" "IBM278"
## [127] "IBM280" "IBM284"
## [129] "IBM285" "IBM290"
## [131] "IBM297" "IBM367"
## [133] "IBM420" "IBM423"
## [135] "IBM424" "IBM437"
## [137] "IBM437" "IBM500"
## [139] "ibm737" "ibm775"
## [141] "IBM775" "IBM819"
## [143] "ibm850" "IBM850"
## [145] "ibm852" "IBM852"
## [147] "IBM855" "IBM855"
## [149] "ibm857" "IBM857"
## [151] "IBM860" "IBM860"
## [153] "ibm861" "IBM861"
## [155] "IBM862" "IBM863"
## [157] "IBM863" "IBM864"
## [159] "IBM864" "IBM865"
## [161] "IBM865" "IBM866"
## [163] "ibm869" "IBM869"
## [165] "IBM870" "IBM871"
## [167] "IBM880" "IBM905"
## [169] "iso-2022-jp" "iso-2022-jp"
## [171] "ISO-2022-JP" "ISO-2022-JP-MS"
## [173] "iso-2022-kr" "ISO-8859-1"
## [175] "iso-8859-13" "iso-8859-15"
## [177] "iso-8859-2" "iso-8859-3"
## [179] "iso-8859-4" "iso-8859-5"
## [181] "iso-8859-6" "iso-8859-7"
## [183] "iso-8859-8" "iso-8859-8-i"
## [185] "iso-8859-9" "ISO-IR-100"
## [187] "ISO-IR-6" "ISO_646.IRV:1991"
## [189] "iso_8859-1" "ISO_8859-1"
## [191] "ISO_8859-1:1987" "iso_8859-13"
## [193] "iso_8859-15" "iso_8859-2"
## [195] "iso_8859-3" "iso_8859-4"
## [197] "iso_8859-5" "iso_8859-6"
## [199] "iso_8859-7" "iso_8859-8"
## [201] "iso_8859-8-i" "iso_8859-9"
## [203] "iso_8859_1" "iso_8859_13"
## [205] "iso_8859_15" "iso_8859_2"
## [207] "iso_8859_3" "iso_8859_4"
## [209] "iso_8859_5" "iso_8859_6"
## [211] "iso_8859_7" "iso_8859_8"
## [213] "iso_8859_8-i" "iso_8859_9"
## [215] "ISO2022-JP" "ISO2022-JP-MS"
## [217] "iso2022-kr" "ISO646-US"
## [219] "iso8859-1" "ISO8859-1"
## [221] "iso8859-13" "iso8859-15"
## [223] "iso8859-2" "iso8859-3"
## [225] "iso8859-4" "iso8859-5"
## [227] "iso8859-6" "iso8859-7"
## [229] "iso8859-8" "iso8859-8-i"
## [231] "iso8859-9" "Johab"
## [233] "JOHAB" "koi8-r"
## [235] "koi8-u" "ks_c_5601-1987"
## [237] "L1" "latin-9"
## [239] "LATIN1" "latin2"
## [241] "latin3" "latin4"
## [243] "latin5" "latin7"
## [245] "latin9" "mac"
## [247] "mac-centraleurope" "mac-is"
## [249] "macarabic" "maccentraleurope"
## [251] "maccroatian" "maccyrillic"
## [253] "macgreek" "machebrew"
## [255] "maciceland" "macintosh"
## [257] "macis" "macroman"
## [259] "macromania" "macthai"
## [261] "macturkish" "macukraine"
## [263] "macukrainian" "MS-ANSI"
## [265] "MS-ARAB" "MS-CYRL"
## [267] "MS-EE" "MS-GREEK"
## [269] "MS-HEBR" "MS-TURK"
## [271] "MS50221" "MS51932"
## [273] "MS932" "MS936"
## [275] "PT154" "PTCP154"
## [277] "SHIFFT_JIS" "SHIFFT_JIS-MS"
## [279] "shift-jis" "shift_jis"
## [281] "SJIS" "SJIS-MS"
## [283] "SJIS-OPEN" "SJIS-WIN"
## [285] "UCS-2" "UCS-2BE"
## [287] "UCS-2LE" "UCS-4"
## [289] "UCS-4BE" "UCS-4BE"
## [291] "UCS-4LE" "UCS-4LE"
## [293] "UCS2" "UCS2BE"
## [295] "UCS2LE" "UCS4"
## [297] "UCS4BE" "UCS4LE"
## [299] "UHC" "unicodeFFFE"
## [301] "US" "US-ASCII"
## [303] "UTF-16" "UTF-16BE"
## [305] "UTF-16LE" "UTF-32"
## [307] "UTF-32BE" "UTF-32LE"
## [309] "UTF-8" "UTF16"
## [311] "UTF16BE" "UTF16LE"
## [313] "UTF32" "UTF32BE"
## [315] "UTF32LE" "UTF8"
## [317] "WINBALTRIM" "windows-1250"
## [319] "windows-1251" "windows-1252"
## [321] "windows-1253" "windows-1254"
## [323] "windows-1255" "windows-1256"
## [325] "windows-1257" "windows-1258"
## [327] "WINDOWS-31J" "WINDOWS-50221"
## [329] "WINDOWS-51932" "windows-874"
## [331] "WINDOWS-932" "WINDOWS-936"
## [333] "x-Chinese_CNS" "x-cp20001"
## [335] "x-cp20003" "x-cp20004"
## [337] "x-cp20005" "x-cp20261"
## [339] "x-cp20269" "x-cp20936"
## [341] "x-cp20949" "x-cp50227"
## [343] "x-EBCDIC-KoreanExtended" "x-Europa"
## [345] "x-IA5" "x-IA5-German"
## [347] "x-IA5-Norwegian" "x-IA5-Swedish"
## [349] "x-iscii-as" "x-iscii-be"
## [351] "x-iscii-de" "x-iscii-gu"
## [353] "x-iscii-ka" "x-iscii-ma"
## [355] "x-iscii-or" "x-iscii-pa"
## [357] "x-iscii-ta" "x-iscii-te"
## [359] "x-mac-arabic" "x-mac-ce"
## [361] "x-mac-chinesesimp" "x-mac-chinesetrad"
## [363] "x-mac-croatian" "x-mac-cyrillic"
## [365] "x-mac-greek" "x-mac-hebrew"
## [367] "x-mac-icelandic" "x-mac-japanese"
## [369] "x-mac-korean" "x-mac-romanian"
## [371] "x-mac-thai" "x-mac-turkish"
## [373] "x-mac-ukrainian" "x_Chinese-Eten"
apple %>% iconv(from='UTF-8', to='UTF-8')
## [1] "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>\n<!DOCTYPE html>\n<!--[if lt IE 7 ]> <html lang=\"zh-TW\" class=\"ie6 ielt8\"> <![endif]-->\n<!--[if IE 7 ]> <html lang=\"zh-TW\" class=\"ie7 ielt8\"> <![endif]-->\n<!--[if IE 8 ]> <html lang=\"zh-TW\" class=\"ie8\"> <![endif]-->\n<!--[if (gte IE 9)|!(IE)]><!-->\n<html lang=\"zh-TW\"> <!--<![endif]-->\n<head>\n <meta charset=\"utf-8\"/>\n <title>蘋果即時新聞|蘋果日報|Apple Daily</title>\n <meta name=\"description\" content=\"蘋果日報網站提供即時、快速、豐富的最新時事動態,包含國際、社會、娛樂、政治、生活、財經等最新訊息,並為您搜奇地球村萬象與趣聞,強調有圖有真相、影片最明白,讓您時時刻刻掌握天下事!\"/>\n <meta name=\"keywords\" content=\"蘋果日報,Apple Daily,台灣,壹傳媒,Apple, Animation news, Action News, Apple news, news,蘋果,即時,最新,蘋果新聞,新聞,壹週刊,壹電視,動新聞,即時新聞,Facebook,臉書,蘋果粉絲團,plurk,twitter,留言,分享,按讚,天氣,影音新聞,影片,影音,行動版,手機,App,Android,iphone,Mango,爆料,投稿,發票,統一發票,RSS,生活,國際,娛樂,體育,副刊,財經,股市,樂透,威力彩,社會,熱門,彩券,頭彩\"/>\n <meta property=\"og:title\" content=\"蘋果即時新聞|蘋果日報|Apple Daily\"/>\n <meta property=\"og:image\" content=\"http://twimg.edgesuite.net/appledaily/images/core/logo_bg.png\"/>\n <meta property=\"og:description\" content=\"蘋果日報網站提供即時、快速、豐富的最新時事動態,包含國際、社會、娛樂、政治、生活、財經等最新訊息,並為您搜奇地球村萬象與趣聞,強調有圖有真相、影片最明白,讓您時時刻刻掌握天下事!\"/>\n <link rel=\"shortcut icon\" href=\"http://twimg.edgesuite.net/appledaily/pinsite/64x64.ico\"/>\n <link rel=\"shortcut icon\" type=\"image/x-icon\" href=\"http://twimg.edgesuite.net/appledaily/pinsite/64x64.ico\"/>\n <link rel=\"icon\" type=\"image/ico\" href=\"http://twimg.edgesuite.net/appledaily/pinsite/64x64.ico\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/style.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/modules.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/rtnewslist.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/style.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/realtimenews.css\"/>\n <script src=\"http://twimg.edgesuite.net/www/js/html5.js\"/>\n <script src=\"http://twimg.edgesuite.net/appledaily/images/js/jquery-1.7.2.min.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/iepngfix.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/jquery.ifixpng.js\"/>\n <script type=\"text/javascript\" language=\"JavaScript\" src=\"http://twimg.edgesuite.net/adx/gpt.js\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/owl.carousel.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/carousel-layout.css\"/>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/assets/css/animate-custom.css\"/>\n <script src=\"http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/owl.carousel.fix.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/appledaily-detectmobilebrowser.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/applemobile/js/jquery.cookie.js\"/>\n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/GeoApiPC.js\"/>\n <script><![CDATA[\n googletag.cmd.push(function() {\n var mappingHeadBanner = googletag.sizeMapping().addSize([0, 0], [ [970,90],[970,160], [970,250] ]).build();\n var mappingLREC1 = googletag.sizeMapping().addSize([0, 0], [ [300,250], [300,600] ]).build();\n HeadBanner = gpt.createAdSlot('AppleDaily/realtimenews_new_index/HeadBanner', 'HeadBanner', 'leaderboard', GeoDFP).defineSizeMapping(mappingHeadBanner).setCollapseEmptyDiv(true);\n LREC1 = gpt.createAdSlot('AppleDaily/realtimenews_new_index/LREC1', 'LREC', 'rectangleAD1', GeoDFP).defineSizeMapping(mappingLREC1).setCollapseEmptyDiv(true);\n LREC2 = gpt.createAdSlot('AppleDaily/realtimenews_new_index/LREC2', 'LREC', 'rectangleAD2', GeoDFP);\n W1 = gpt.createAdSlot('AppleDaily/realtimenews_new_index/Wallpaper1', '150x800', 'door-left', GeoDFP);\n W2 = gpt.createAdSlot('AppleDaily/realtimenews_new_index/Wallpaper2', '150x800', 'door-right', GeoDFP);\n BottomBanner = gpt.createAdSlot('AppleDaily/realtimenews_new_index/BottomBanner', '1x1', 'div-ad-bottom', GeoDFP);\n Minibar = gpt.createAdSlot('AppleDaily/realtimenews_new_index/minibar', '640x90', 'minibar', GeoDFP);\n gpt.enableServices();\n });\n ]]></script>\n</head>\n<body id=\"article\" class=\"all\">\n <div class=\"wrapper\">\n <div class=\"sqrezeer\">\n <script><![CDATA[\n var _comscore = _comscore || [];\n _comscore.push({ c1: \"2\", c2: \"8028476\" });\n (function() {\n var s = document.createElement(\"script\"), el = document.getElementsByTagName(\"script\")[0]; s.async = true;\n s.src = (document.location.protocol == \"https:\" ? \"https://sb\" : \"http://b\") + \".scorecardresearch.com/beacon.js\";\n el.parentNode.insertBefore(s, el);\n })();\n]]></script>\n<noscript>\n <img src=\"http://b.scorecardresearch.com/p?c1=2&c2=8028476&cv=2.0&cj=1\"/>\n</noscript>\n\n<!-- 1X1 -->\n<script type=\"text/javascript\" src=\"http://imp.nextmedia.com/js/nxm_tr_v16.js\"/>\n<script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/1x1/fingerprint.js\"/>\n<script><![CDATA[\n nxmTrack.nxmAddSeg(\"REGION=TW\");\n nxmTrack.nxmAddSeg(\"PROD=ADAILY\");\n nxmTrack.nxmAddSeg(\"SITE=www.appledaily.com.tw\"); \n nxmTrack.nxmAddSeg(\"CH=APPLEDAILY\");\n nxmTrack.nxmAddSeg(\"SECTION=REAL\");\n nxmTrack.nxmAddSeg(\"MENU=\"); \n nxmTrack.nxmAddSeg(\"TITLE=\");\n nxmTrack.nxmAddSeg(\"SUBSECT=new\");\n nxmTrack.nxmAddSeg(\"SUBSUBSECT=new\"); \n nxmTrack.nxmAddSeg(\"MEDIA=TEXT\");\n nxmTrack.nxmAddSeg(\"CONTENT=INDEX\"); \n nxmTrack.nxmAddSeg(\"ISSUEID=\"); \n nxmTrack.nxmAddSeg(\"CID=\"); \n nxmTrack.nxmAddSeg(\"CAT=new\"); \n nxmTrack.nxmAddSeg(\"NEWS=REALTIME\"); \n nxmTrack.nxmAddSeg(\"PLATFORM=WEB\"); \n nxmTrack.nxmAddSeg(\"EDM=MOST\");\n nxmTrack.nxmAddSeg(\"VERSION=\");\n nxmTrack.nxmAddSeg(\"DEVICE=\");\n nxmTrack.nxmAddSeg(\"ACTION=PAGEVIEW\");\n var ngs_id = nxmTrack.readCookie('ngs_id');\n if (ngs_id == null) ngs_id = '';\n nxmTrack.nxmAddSeg('NGSID=' + ngs_id);\n\n $(document).ready(function() {\n nxmTrack.nxmSendPageDepth(0, new Date().getTime());\n\n //Scroll up/down tracking depth\n var trackRecords = [];\n $(window).scroll(function() {\n var scrollPercent = getPageScrollPercent();\n if (scrollPercent >= 25 && trackRecords.indexOf(\"25\") == -1) {\n trackRecords.push(\"25\");\n nxmTrack.nxmSendPageDepth(25, new Date().getTime());\n } else if (scrollPercent >= 50 && trackRecords.indexOf(\"50\") == -1) {\n trackRecords.push(\"50\");\n nxmTrack.nxmSendPageDepth(50, new Date().getTime());\n } else if (scrollPercent >= 75 && trackRecords.indexOf(\"75\") == -1) {\n trackRecords.push(\"75\");\n nxmTrack.nxmSendPageDepth(75, new Date().getTime());\n } else if (scrollPercent == 100 && trackRecords.indexOf(\"100\") == -1) {\n trackRecords.push(\"100\");\n nxmTrack.nxmSendPageDepth(100, new Date().getTime());\n }\n });\n function getPageScrollPercent() {\n var bottom = $(window).height() + $(window).scrollTop();\n var height = $(document).height();\n return Math.round(100 * bottom / height);\n }\n });\n \n]]></script>\n\n<style><![CDATA[\n #door {position:relative; width:970px; margin-top:45px;}\n #door-left{position:absolute;right: 975px;}\n #door-right{position:absolute;left: 975px;}\n #ypv {float:right;margin:-81px 135px 0px 0px;}\n #ypv a {color:#055b94}\n .nypv {background: url('http://twimg.edgesuite.net/appledaily/images/core/iconset.png') 0px -41px no-repeat;display: inline-block;color: #055b94;width:14px;height:12px;}\n #corpnav a {padding: 0 8px 0 8px;}\n a.mc {left:843px;}\n #corpgs a {top: 9px;}\n .nxlik .nh {left: 805px;top: 18px;}\n #corpgs .fund {background-image:url('http://twimg.edgesuite.net/appledaily/images/core/foundation_top.png');width:65px;height:14px;margin-left:712px;margin-top:18px;}\n #worldwide {top: 26px;right: 0px;} \n .translate { position: absolute;top: 10px;right: 270px;}\n .translate.twn {display:none}\n]]></style>\n<header id=\"globehead\">\n <div class=\"sqzer\">\n <hgroup>\n <h2 class=\"nlogo\"><a href=\"http://www.nextdigital.com.hk/investor/\" class=\"nextmedia overcooked\">This is a part of NextMedia</a></h2>\n <h1 class=\"rlogo\"><a href=\"/realtimenews\" class=\"overcooked\">蘋果日報 | APPLE DAILY</a></h1>\n <!--locate start-->\t\t\t\n <style><![CDATA[\n .locate {width: 122px;position:absolute;top: 10px;left: 455px;}\n .locate a {color:black;display:block;position:absolute;top:5px;left: 30px;font-size: 13px;z-index:1}\n .locate select {opacity:0;position:absolute;width: 90px;top:5px;left: 25px;z-index:1}\n .locate:after {content:url(http://twimg.edgesuite.net/appledaily/images/pclicon.png);width:115px;height:22px;position:absolute;top:0px; border-left: 1px solid #d5d5d5;border-top: 1px solid #9b9b9b;border-bottom: 1px solid #e8e8e8;border-right: 1px solid #d5d5d5;}\n ]]></style>\n <div class=\"locate\" id=\"USlocate\" style=\"display:none\">\n <a href=\"\">切換地區</a>\n <form>\n <select data-role=\"none\" id=\"select-category\" onchange=\"chgUSCat(this.value)\">\n <option value=\"0\">切換地區</option>\n <option value=\"ny\">紐約</option>\n <option value=\"la\">洛杉磯</option>\n <option value=\"sf\">舊金山</option>\n </select>\n </form>\n </div>\n <!--locate end--> \n </hgroup>\n <nav id=\"corpnav\"> \n <a href=\"/\" class=\"opacity \" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_AppleDaily.png\" alt=\" 蘋果日報\"/></a>\t\n <a href=\"/animation\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_AnimatedNews.png\" alt=\" 動新聞\"/></a>\n <a href=\"http://www.applelive.com.tw/livechannel/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/applelive.gif\" alt=\" 蘋果Live\"/></a>\n <a href=\"http://apple360.appledaily.com.tw/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/360logo.png\" alt=\" 蘋果360\" width=\"83\" height=\"30\"/></a>\n <a href=\"http://sharpdaily.tw/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_SharpDaily.png\" alt=\"爽報\"/></a>\n <a href=\"http://www.nextmag.com.tw\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_NextMag.png\" alt=\"壹週刊\"/></a>\n <a href=\"http://www.eat-travel.com.tw/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_eatintravel.png\" alt=\"飲食男女\"/></a>\n <a href=\"http://www.tomonews.com/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_tomonews_s.png\" alt=\"Tomonews\"/></a> \n <a href=\"https://www.youtube.com/user/twappledaily/\" class=\"opacity\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_youtube.png\" alt=\"youtube\"/></a> \n\t <a href=\"/teded\" class=\"opacity last\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ted.png\" alt=\"Ted\"/></a>\n </nav> \n \n <!--language start-->\n <div class=\"translate\" id=\"googletranslate\" style=\"display:none\">\n <div id=\"google_translate_element\"/>\n <script type=\"text/javascript\"><![CDATA[\n function googleTranslateElementInit() {\n new google.translate.TranslateElement({pageLanguage: 'zh-TW', includedLanguages: 'zh-CN,zh-TW', layout: google.translate.TranslateElement.InlineLayout.SIMPLE}, 'google_translate_element');\n }\n ]]></script>\n <script type=\"text/javascript\" src=\"//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit\"/>\n </div>\n <!--language end-->\t \n <section id=\"worldwide\">\n <a href=\"http://www.twnextdigital.com/\" class=\"tw on\">台灣<U+00A0></a>\n <a href=\"http://www.nextdigital.com.hk/\" class=\"hk\">香港<U+00A0></a>\n </section>\n <section id=\"ypv\">\n <a href=\"http://www.nextdigital.com.hk/investor/\" target=\"_blank\"><span class=\"nypv\"/><span>昨日瀏覽量<U+00A0>:<U+00A0></span><span id=\"pv\">24143206</span></a>\n </section>\n <div style=\"clear:both\"/>\n <section id=\"corpgs\">\n <a href=\"/ethics/index.html\" class=\"mc\" target=\"_blank\">蘋果日報自律委員會</a>\n <a class=\"fund\" href=\"/charity\" target=\"_blank\"/>\n <a href=\"http://www.nextdigital.com.hk/investor/\" class=\"nxlik\" target=\"_blank\"><span class=\"nh overcooked\">Nextmedia</span></a>\n </section>\n <section id=\"door\">\n <div id=\"door-left\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('door-left');})]]></script></div>\n <div id=\"door-right\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('door-right');})]]></script></div>\n </section>\n </div>\n</header>\n<style><![CDATA[\n .navlv2 {width: 80.8px;border-top:1px solid #797979;}\n .rsearch {width: 241.8px;border-right:0px;border-top:1px solid #797979;}\n #newnav .boomed a,#newnav .boom a:hover {background-color:#EC7F27;color: #FFFFFF;}\n #newnav .new a:hover,#newnav .newed a {background:#D50404}\n .rsbox {width:205px;}\n #newnav .usa a:hover,#newnav .usaed a {background-color: #ff0f0f;}\n #newnav .usacity a:hover,#newnav .usacityed a {background-color: #2113bf;}\n .usacity,.usacityed,.usa,.usaed {display:none}\n #newnav .show {display:block;}\n li.usacityed.show ~ li.usa.show ~ li.rsearch {width:79.8px}\n li.usacityed.show ~ li.usa.show ~ li.rsearch .rsbox {width:43px}\n li.usacity.show ~ li.usaed.show ~ li.rsearch {width:79.8px}\n li.usacity.show ~ li.usaed.show ~ li.rsearch .rsbox {width:43px} \n li.usacity ~ li.usaed.show ~ li.rsearch {width:160.8px}\n li.usacity ~ li.usaed.show ~ li.rsearch .rsbox {width:124px}\n li.usacity ~ li.usa.show ~ li.rsearch {width:160.8px}\n li.usacity ~ li.usa.show ~ li.rsearch .rsbox {width:124px}\n li.usacity.show ~ li.usa.show ~ li.rsearch {width:79.8px}\n li.usacity.show ~ li.usa.show ~ li.rsearch .rsbox {width:43px} \n .rtddt time font font {margin-right: -20px;}\n .rtddt.sp_ad font font {margin-right: 0px;}\n .rtddt h2 font {margin-right: 0px;display: inline-block;padding-bottom: 1px;} \n .rtddt h1 font {display: inline-block;margin-right:0px;}\n]]></style>\n<nav id=\"realnav\">\n <div id=\"newnav\">\n <ul>\n <li id=\"ny\" class=\"usacity navlv2\"><a title=\"紐約\" href=\"/realtimenews/section/ny/\">紐約</a></li>\n <li id=\"sf\" class=\"usacity navlv2\"><a title=\"舊金山\" href=\"/realtimenews/section/sf/\">舊金山</a></li>\n <li id=\"la\" class=\"usacity navlv2\"><a title=\"洛杉磯\" href=\"/realtimenews/section/la/\">洛杉磯</a></li>\n <li id=\"us\" class=\"usa navlv2\"><a title=\"美國\" href=\"/realtimenews/section/us/\">美國</a></li>\n <li class=\"newed navlv2\"><a title=\"最新\" href=\"/realtimenews/section/new/\">最新</a></li>\n <li class=\"recommend navlv2\"><a title=\"焦點\" href=\"/realtimenews/section/recommend/\">焦點</a></li>\n <li class=\"hot navlv2\"><a title=\"熱門\" href=\"/realtimenews/section/hot/\">熱門</a></li>\n <li class=\"boom navlv2\"><a title=\"爆社\" href=\"http://www.appledaily.com.tw/complainevent\" target=\"_blank\">爆社</a></li>\n <li class=\"zoo navlv2\"><a title=\"動物\" href=\"/realtimenews/section/animal/\">動物</a></li>\n <li class=\"rsea navlv2\"><a title=\"副刊\" href=\"/realtimenews/section/strange/\">副刊</a></li>\n <li class=\"ccc navlv2\"><a title=\"3C\" href=\"/realtimenews/section/3c/\">3C</a></li> \n <li class=\"video navlv2\"><a title=\"影片\" href=\"/realtimenews/section/video/\">影片</a></li>\n <li class=\"hotg navlv2\"><a title=\"正妹\" href=\"/realtimenews/section/beauty/\">正妹</a></li>\n <li class=\"sport navlv2\"><a title=\"體育\" href=\"/realtimenews/section/sports/\">體育</a></li>\n <li class=\"fun navlv2\"><a title=\"壹週刊\" href=\"/realtimenews/section/nextmag/\">壹週刊</a></li>\n <li class=\"forum navlv2\"><a title=\"媒陣\" href=\"/realtimenews/forum/istyle/new/#collaboration\">媒陣</a></li>\n <li class=\"enter navlv2\"><a title=\"娛樂\" href=\"/realtimenews/section/entertainment/\">娛樂</a></li> \n <li class=\"fashion navlv2\"><a title=\"時尚\" href=\"/realtimenews/section/fashion/\">時尚</a></li>\n <li class=\"life navlv2\"><a title=\"生活\" href=\"/realtimenews/section/life/\">生活</a></li>\n <li class=\"soci navlv2\"><a title=\"社會\" href=\"/realtimenews/section/local/\">社會</a></li>\n <li class=\"inter navlv2\"><a title=\"國際\" href=\"/realtimenews/section/international/\">國際</a></li>\n <li class=\"business navlv2\"><a title=\"財經\" href=\"/realtimenews/section/finance/\">財經</a></li>\n <li class=\"house navlv2\"><a title=\"地產\" href=\"/realtimenews/section/property/\">地產</a></li>\n <li class=\"polit navlv2\"><a title=\"政治\" href=\"/realtimenews/section/politics/\">政治</a></li>\n <li class=\"blog navlv2\"><a title=\"論壇\" href=\"/realtimenews/section/forum/\">論壇</a></li> \n <li class=\"rsearch\">\n <form name=\"searchform\" id=\"searchform\" action=\"http://search.appledaily.com.tw/appledaily/search\" method=\"POST\">\n <input type=\"hidden\" name=\"searchType\" value=\"text\"/>\n <input type=\"hidden\" name=\"searchMode\" value=\"Sim\"/>\n <input type=\"text\" name=\"querystrS\" id=\"search\" class=\"rsbox\"/>\n <input type=\"submit\" value=\"\" class=\"rsbtn\"/>\n </form>\n </li>\n <div style=\"clear:both\"/>\n </ul>\n </div>\n</nav>\n<script><![CDATA[\n if (GeoDFP['CC'] == 'US') {\n switch(GeoDFP['D']) {\n case '803' :\n $('#la').addClass(\"show\");\n break;\n case '807' :\n $('#sf').addClass(\"show\");\n break;\n case '501' :\n $('#ny').addClass(\"show\");\n break;\n }\n $('#us').addClass(\"show\");\n $('#USlocate').show(); \n $('#googletranslate').show(); \n }\n function chgUSCat(strzone){ \n if (strzone!='0') {\n var GeoUSDFP = {};\n GeoJson = JSON.parse($.cookie('GeoDFP'));\n if(GeoJson){\n GeoUSDFP['CC'] = GeoJson['DFP']['CC'];\n GeoUSDFP['S'] = GeoJson['DFP']['S']; \n switch(strzone) {\n case 'la' :\n GeoUSDFP['D'] = '803';\n break;\n case 'sf' :\n GeoUSDFP['D'] = '807';\n break;\n case 'ny' : \n GeoUSDFP['D'] = '501';\n break;\n } \n\n $.cookie('GeoDFP', JSON.stringify({\"DFP\":GeoUSDFP}),{expires: 7, path: '/' });\t\t\t\t\t\t\t \n location.href = \"/realtimenews/section/\"+strzone;\n }\n } \n }\n]]></script> \n <div class=\"soil\">\n <section id=\"leaderboard\" class=\"ads\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('leaderboard');})]]></script></section>\n <article id=\"maincontent\" class=\"vertebrae\">\n <style><![CDATA[#hotnewsbox{ background:url(\"http://twimg.edgesuite.net/appledaily/images/yellow_news.gif\") no-repeat; height:36px; padding:14px 0 0 134px}]]></style> <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/appledaily/images/js/jquery.textslider.min.js\"/>\n <style><![CDATA[\n .slideText { position: relative; overflow: hidden; height: 32px; }\n .slideText ul, .slideText li {margin: 0;padding: 0;list-style: none;}\n .slideText ul {position: absolute;}\n .slideText li a {font-size:20px;color:#000000;display: block;overflow: hidden;height: 30px;line-height: 25px;text-decoration: none;}\n .slideText li a:hover {text-decoration: underline;}\n #hotnewsbox2 {background: url(\"http://twimg.edgesuite.net/appledaily/images/red_recommend.gif\") no-repeat;height: 36px;padding: 14px 0 0 195px;}\n ]]></style>\n <script type=\"text/javascript\"><![CDATA[\n $(document).ready(function(){\n $('.slideText').textslider({\n direction : 'scrollUp',\n scrollNum : 1,\n scrollSpeed : 800,\n pause : 3200\n });\n });\n ]]></script>\n <div id=\"hotnewsbox\">\n <div class=\"slideText\">\n <ul>\n <li><a href=\"/realtimenews/article/politics/20160710/904866/\">感同身受 賴清德捐月薪助台東重建</a></li> </ul>\n </div>\n </div>\n \n <div class=\"thoracis\">\n <style><![CDATA[\n /* firewire */\n .firewire-container {width: 650px; height: 100px; overflow: hidden; margin-bottom: 10px;}\n #firewire .item {width: 650px; height: 100px; background: #dddddd url(http://twimg.edgesuite.net/appledaily/images/js/owlcarousel/ajax-loader.gif) center center no-repeat;}\n #firewire .item a {width: 100%; height: 100%; display: block;}\n #firewire .item img {display: block; border: none;}\n /* override */\n #splash { margin-bottom: 10px;}\n .hotkeynews {background-color:#e0e0e0}\n .hotkeynews time {color:#ff534f}\n .hotkeynews li {background-color:white;margin-bottom:2px;}\n .topheaddr {background:#cc0000;height:40px;position:relative;margin-top:-15px}\n .topheadrr {width:134px;height:40px;background:#ff1a14;float:left;}\n .topheadrr h1 {display:block;font-size:16px;color:white;padding:12px 0px 0px 19px;}\n .topheaddr time {float:right;color:white;padding:13px 19px 0px 0px;}\n .botlinerr {background:#cc0000;height:5px}\n .botlinedr {width:134px;height:5px;background:#ff1a14}\n .dddd {margin: 0.65em 0 0.65em;}\n ]]></style>\n <section id=\"splash\">\n <div id=\"carousel\">\n <div class=\"item\">\n <a href=\"/realtimenews/article/politics/20160710/904850/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/c7e2b47b12ef5cc44533687ac29b1abf.jpg\" alt=\"遭質疑沒趕回台東救災 市長張國洲鞠躬道歉\" tcode=\"遭質疑沒趕回台東救災 市長張國洲鞠躬道歉\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/entertainment/20160710/904717/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/8a35988beb65c24903f86af0f76444e0.jpg\" alt=\"【獨家直擊】仔仔愛撫孕妻 喻虹淵6月肚曝光\" tcode=\"【獨家直擊】仔仔愛撫孕妻 喻虹淵6月肚曝光\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904791/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/dea5fd79783d4db8f796e837bf61f962.jpg\" alt=\"台東市長好強!救災慢半拍 出國快一拍\" tcode=\"台東市長好強!救災慢半拍 出國快一拍\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904844/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/17d4e0693a5e67fa3747032817f372ad.jpg\" alt=\"不滿挨告 男赴鄰居家潑油縱火2命危\" tcode=\"不滿挨告 男赴鄰居家潑油縱火2命危\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904642/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/43b014aca2d42b8f192742fae7dd8b08.jpg\" alt=\"【直擊】噁爛油條廠 髒油如地溝水\" tcode=\"【直擊】噁爛油條廠 髒油如地溝水\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904811/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/3daedddc9f26023913ef7f3baa6fa5a5.jpg\" alt=\"3男沒義氣撞車落跑 獨剩熱褲妹遭警逮\" tcode=\"3男沒義氣撞車落跑 獨剩熱褲妹遭警逮\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/life/20160710/904837/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/56dbdac2e085660e9edb8eee5d9c43cc.jpg\" alt=\"熱帶低壓環流影響 彰化以南8縣市發豪雨特報\" tcode=\"熱帶低壓環流影響 彰化以南8縣市發豪雨特報\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/international/20160710/904797/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/9ef035bbca31f0a64a8eb75574ec54c2.jpg\" alt=\"逾412萬人請願 英政府拒辦第2次脫歐公投\" tcode=\"逾412萬人請願 英政府拒辦第2次脫歐公投\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/life/20160710/904762/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/333a0cc987220263d2341d72e6170d30.jpg\" alt=\"吐血!民眾買不到票 普悠瑪號卻只坐20人\" tcode=\"吐血!民眾買不到票 普悠瑪號卻只坐20人\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/strange/20160710/904199/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/5043261b541f9024006e1577aacd8e5e.jpg\" alt=\"挑戰海祭 24歲年輕人締造10萬人音樂祭\" tcode=\"挑戰海祭 24歲年輕人締造10萬人音樂祭\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/life/20160710/904030/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/0a430c1394e5d11192f3e5875aede629.jpg\" alt=\"【我和你不一樣】別人眼中的折磨 是我的解脫\" tcode=\"【我和你不一樣】別人眼中的折磨 是我的解脫\"/>\n </a>\n </div>\n <div class=\"item\">\n <a href=\"/realtimenews/article/local/20160710/904106/\" target=\"_blank\">\n <img class=\"owl-lazy\" src=\"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\" data-src=\"http://twimg.edgesuite.net/images/thumbnail/other/ecc4bbeebf9716ff9274175a2c1c8f56.jpg\" alt=\"【法律問蘋果】被列警示帳戶 想解禁看這邊\" tcode=\"【法律問蘋果】被列警示帳戶 想解禁看這邊\"/>\n </a>\n </div>\n </div>\n <div class=\"xPrev\">上一則</div>\n <div class=\"xNext\">下一則</div>\n </section>\n <!--十月圍城--> \n <script type=\"text/javascript\" src=\"http://twimg.edgesuite.net/property/js/jquery.carouFredSel-6.2.1.js\"/>\n<style><![CDATA[\n#october {width:650px;height:200px;overflow:hidden;}\n#october .slidebox {width:650px;height:200px;}\n#october .slidebox .pics {float:left;width:650px;height:183px;overflow:hidden;margin:10px 2px 10px 2px;}\n#october .slidebox .pics img {max-width:650px;height:auto;}\n]]></style>\n <div style=\"width:100%;margin-top:-10px;\"/>\n <div id=\"october\"> \n <div class=\"slidebox\"> \n <div class=\"pics\">\n <a href=\"http://goo.gl/FcdlZ8\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/data/oct/eab1a5f30b22fb9673b2128c78396460.jpg\"/></a>\n </div>\t\t\t\t \n </div>\n <div class=\"slidebox\"> \n <div class=\"pics\">\n <a href=\"http://www.appledaily.com.tw/column/index/115/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/data/oct/d8947e2b2c5440f60d9affb0c1168044.jpg\"/></a>\n </div>\t\t\t\t \n </div>\n <div class=\"slidebox\"> \n <div class=\"pics\">\n <a href=\"http://goo.gl/8eeapZ\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/data/oct/06d3e6cfd34121861d282fbcf82c1d17.jpg\"/></a>\n </div>\t\t\t\t \n </div>\n \n </div>\t\t\t\n<script type=\"text/javascript\"><![CDATA[\n$(document).ready(function() {\n $('#october').carouFredSel({\n items: 1,\n direction: \"up\",\n infinite: true,\n circular: true,\n scroll: {\n items: 1,\n duration: 1250,\n timeoutDuration: 2500,\n easing: 'swing',\n pauseOnHover: 'immediate' \n },\n });\n});\n]]></script>\t\t \n <!--十月圍城--> \n <style><![CDATA[\n .realword {padding-top:5px;padding-bottom:30px;}\n .realword .link1 a {color:red;font-size:22px;font-weight:bold;}\n .realword .link1 {float:left;width:320px;text-align:center;}\n .rtddd .sp_ad {padding: 0.625em 20px;}\n .rtddd .sp_ad time {display: inline;font-size: 1em;margin-right: 20px;vertical-align: middle;}\n .rtddd .sp_ad h2 {background-color:#049000;display: inline;font-size: 1em;margin-right: 20px;vertical-align: middle;}\n .rtddd .sp_ad h1 {display: inline;}\n .rtddd .sp_ad h1 a {display: inline;font-size:16px;color:black;padding-left: 0px;}\n .rtddd .ccc h2 {background-color: #318597; padding:2px 14px;}\n ]]></style>\t\t\t\t\t\n <script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('minibar');})]]></script>\n <div class=\"abdominis rlby clearmen\"> \n <h1 class=\"dddd\"><time>2016 / 07 / 10</time></h1><ul class=\"rtddd slvl\"> <li class=\"rtddt enter\">\n <a href=\"/realtimenews/article/entertainment/20160710/904853/林心如霍建華黏TT 吃完家宴看電影\" target=\"_blank\">\n <time>09:57</time>\n <h2>娛樂</h2>\n <h1><font color=\"#ff0000\">林心如霍建華黏TT 吃完家宴看電影(39)</font></h1>\n </a>\n </li>\n <li class=\"rtddt local even\">\n <a href=\"/realtimenews/article/local/20160710/904862/驚!化學車側翻鹽酸外洩 駕駛當場死亡\" target=\"_blank\">\n <time>09:56</time>\n <h2>社會</h2>\n <h1><font color=\"#ff0000\">驚!化學車側翻鹽酸外洩 駕駛當場死亡(21)</font></h1>\n </a>\n </li>\n <li class=\"rtddt polit\">\n <a href=\"/realtimenews/article/politics/20160710/904863/尼伯特肆虐 國軍運補口糧協助綠島居民\" target=\"_blank\">\n <time>09:56</time>\n <h2>政治</h2>\n <h1><font color=\"#383c40\">尼伯特肆虐 國軍運補口糧協助綠島居民(120)</font></h1>\n </a>\n </li>\n <li class=\"rtddt sport even\">\n <a href=\"/realtimenews/article/sports/20160710/904869/<U+200B>肥約到手 哈登諂媚:休士頓是我的家\" target=\"_blank\">\n <time>09:56</time>\n <h2>體育</h2>\n <h1><font color=\"#ff0000\"><U+200B>肥約到手 哈登諂媚:休士頓是我的家 (36)</font></h1>\n </a>\n </li>\n <li class=\"rtddt polit\">\n <a href=\"/realtimenews/article/politics/20160710/904864/東部視察颱風災情 蔡總統:全力協助重建\" target=\"_blank\">\n <time>09:51</time>\n <h2>政治</h2>\n <h1><font color=\"#383c40\">東部視察颱風災情 蔡總統:全力協助重建(182)</font></h1>\n </a>\n </li>\n <li class=\"rtddt polit even\">\n <a href=\"/realtimenews/article/politics/20160710/904866/感同身受 賴清德捐月薪助台東重建\" target=\"_blank\">\n <time>09:50</time>\n <h2>政治</h2>\n <h1><font color=\"#ff0000\">感同身受 賴清德捐月薪助台東重建(96)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life\">\n <a href=\"/realtimenews/article/life/20160710/904867/32國軍馳援綠島 總統下午先赴蘭嶼勘災 \" target=\"_blank\">\n <time>09:50</time>\n <h2>生活</h2>\n <h1><font color=\"#ff0000\">32國軍馳援綠島 總統下午先赴蘭嶼勘災 (563)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life even\">\n <a href=\"/realtimenews/article/life/20160710/904861/尼伯特受災民眾 公路監理業務可延期辦理\" target=\"_blank\">\n <time>09:49</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">尼伯特受災民眾 公路監理業務可延期辦理(69)</font></h1>\n </a>\n </li>\n <li class=\"rtddt nextmag hsv\">\n <a href=\"/realtimenews/article/nextmag/20160710/904530/【壹週刊】【大明星KTV】比起〈鬼迷心竅〉 林憶蓮這首歌更適合華心CP\" target=\"_blank\">\n <time>09:48</time>\n <h2>壹週刊</h2>\n <h1><font color=\"#383c40\">【壹週刊】【大明星KTV】比起〈鬼迷心竅...(321)</font></h1>\n </a>\n </li>\n <li class=\"rtddt busi even\">\n <a href=\"/realtimenews/article/finance/20160710/904857/歷史新高! 國人貧富差距飆至112倍\" target=\"_blank\">\n <time>09:45</time>\n <h2>財經</h2>\n <h1><font color=\"#ff0000\">歷史新高! 國人貧富差距飆至112倍(1108)</font></h1>\n </a>\n </li>\n <li class=\"rtddt inter\">\n <a href=\"/realtimenews/article/international/20160710/904865/【央廣RTI】伊收復北部空軍基地IS再敗退\" target=\"_blank\">\n <time>09:45</time>\n <h2>國際</h2>\n <h1><font color=\"#383c40\">【央廣RTI】伊收復北部空軍基地 IS再...(0)</font></h1>\n </a>\n </li>\n <li class=\"rtddt inter even\">\n <a href=\"/realtimenews/article/international/20160710/904860/<U+200B>西班牙奔牛節傳性侵 5男涉輪暴被捕\" target=\"_blank\">\n <time>09:41</time>\n <h2>國際</h2>\n <h1><font color=\"#ff0000\"><U+200B>西班牙奔牛節傳性侵 5男涉輪暴被捕(981)</font></h1>\n </a>\n </li>\n <li class=\"rtddt sport\">\n <a href=\"/realtimenews/article/sports/20160710/904858/<U+200B>4年38億 哈登與火箭簽新約\" target=\"_blank\">\n <time>09:40</time>\n <h2>體育</h2>\n <h1><font color=\"#ff0000\"><U+200B>4年38億 哈登與火箭簽新約 (1443)</font></h1>\n </a>\n </li>\n <li class=\"rtddt busi even\">\n <a href=\"/realtimenews/article/finance/20160710/903962/【財訊】黑天鵝亂入,當外資大賣台積電 就是進場好時機\" target=\"_blank\">\n <time>09:39</time>\n <h2>財經</h2>\n <h1><font color=\"#383c40\">【財訊】黑天鵝亂入,當外資大賣台積電 就...(1384)</font></h1>\n </a>\n </li>\n <li class=\"rtddt enter hsv\">\n <a href=\"/realtimenews/article/entertainment/20160710/904649/人妻女星修修臉上癮 明明變個人還裝傻\" target=\"_blank\">\n <time>09:36</time>\n <h2>娛樂</h2>\n <h1><font color=\"#ff0000\">人妻女星修修臉上癮 明明變個人還裝傻(2711)</font></h1>\n </a>\n </li>\n <li class=\"rtddt inter even\">\n <a href=\"/realtimenews/article/international/20160710/904859/【央廣RTI】日參議院選舉執政黨可望勝選\" target=\"_blank\">\n <time>09:33</time>\n <h2>國際</h2>\n <h1><font color=\"#383c40\">【央廣RTI】日參議院選舉 執政黨可望勝...(92)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life\">\n <a href=\"/realtimenews/article/life/20160710/904855/開齋節最後一天 台北火車站大廳湧入穆斯林\" target=\"_blank\">\n <time>09:31</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">開齋節最後一天 台北火車站大廳湧入穆斯林(1653)</font></h1>\n </a>\n </li>\n <li class=\"rtddt nextmag even hsv\">\n <a href=\"/realtimenews/article/nextmag/20160710/904856/【壹週刊】在朝鮮平壤生存第一守則是鞠躬獻花\" target=\"_blank\">\n <time>09:26</time>\n <h2>壹週刊</h2>\n <h1><font color=\"#383c40\">【壹週刊】在朝鮮平壤 生存第一守則是鞠...(503)</font></h1>\n </a>\n </li>\n <li class=\"rtddt local hsv\">\n <a href=\"/realtimenews/article/local/20160710/904844/【更新】不滿挨告 男赴鄰居家潑油縱火2命危\" target=\"_blank\">\n <time>09:24</time>\n <h2>社會</h2>\n <h1><font color=\"#ff0000\">【更新】不滿挨告 男赴鄰居家潑油縱火2命...(10567)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life even hsv\">\n <a href=\"/realtimenews/article/life/20160710/897973/西南風增強 中南部防豪大雨\" target=\"_blank\">\n <time>09:23</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">西南風增強 中南部防豪大雨(773)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life hsv\">\n <a href=\"/realtimenews/article/life/20160710/904852/援助台東 新北市人車到位開始作業\" target=\"_blank\">\n <time>09:16</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">援助台東 新北市人車到位開始作業(1978)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life even\">\n <a href=\"/realtimenews/article/life/20160710/904803/【網路溫度計】夏天就是要去漁港啊!十大人氣觀光漁港攏底家!\" target=\"_blank\">\n <time>09:10</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">【網路溫度計】夏天就是要去漁港啊!十大人...(2117)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life hsv\">\n <a href=\"/realtimenews/article/life/20160710/904812/【更新】NMD潮鞋再發威 民眾徹夜排隊等搶購\" target=\"_blank\">\n <time>09:10</time>\n <h2>生活</h2>\n <h1><font color=\"#ff0000\">【更新】NMD潮鞋再發威 民眾徹夜排隊等...(7233)</font></h1>\n </a>\n </li>\n <li class=\"rtddt property even hsv\">\n <a href=\"/realtimenews/article/property/20160710/902559/「貓吉拉巡田水」 寵物賣屋超Q彈~\" target=\"_blank\">\n <time>09:09</time>\n <h2>地產</h2>\n <h1><font color=\"#383c40\">「貓吉拉巡田水」 寵物賣屋超Q彈~(676)</font></h1>\n </a>\n </li>\n <li class=\"rtddt enter\">\n <a href=\"/realtimenews/article/entertainment/20160710/904714/辣媽看球賽激吻男友 忘我親熱墨鏡都歪了\" target=\"_blank\">\n <time>09:05</time>\n <h2>娛樂</h2>\n <h1><font color=\"#ff0000\">辣媽看球賽激吻男友 忘我親熱墨鏡都歪了(8074)</font></h1>\n </a>\n </li>\n <li class=\"rtddt polit even\">\n <a href=\"/realtimenews/article/politics/20160710/904850/遭質疑沒趕回台東救災 市長張國洲鞠躬道歉\" target=\"_blank\">\n <time>09:05</time>\n <h2>政治</h2>\n <h1><font color=\"#ff0000\">遭質疑沒趕回台東救災 市長張國洲鞠躬道歉(24017)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life\">\n <a href=\"/realtimenews/article/life/20160710/904849/「未與市民共患難」 台東市長道歉了\" target=\"_blank\">\n <time>09:02</time>\n <h2>生活</h2>\n <h1><font color=\"#383c40\">「未與市民共患難」 台東市長道歉了(2161)</font></h1>\n </a>\n </li>\n <li class=\"rtddt busi even hsv\">\n <a href=\"/realtimenews/article/finance/20160710/904041/【實用文】帥哥主廚教你3招挑好蝦\" target=\"_blank\">\n <time>08:52</time>\n <h2>財經</h2>\n <h1><font color=\"#383c40\">【實用文】帥哥主廚教你3招挑好蝦(1471)</font></h1>\n </a>\n </li>\n <li class=\"rtddt inter hsv\">\n <a href=\"/realtimenews/article/international/20160710/904833/<U+200B>達拉斯警方又接獲威脅 升高安全戒備\" target=\"_blank\">\n <time>08:49</time>\n <h2>國際</h2>\n <h1><font color=\"#383c40\"><U+200B>達拉斯警方又接獲威脅 升高安全戒備(2458)</font></h1>\n </a>\n </li>\n <li class=\"rtddt life even hsv\">\n <a href=\"/realtimenews/article/life/20160710/904837/【有片】熱帶低壓環流影響 彰化以南8縣市發豪雨特報\" target=\"_blank\">\n <time>08:48</time>\n <h2>生活</h2>\n <h1><font color=\"#ff0000\">【有片】熱帶低壓環流影響 彰化以南8縣市...(23156)</font></h1>\n </a>\n </li>\n </ul> \n <nav class=\"page_switch lisw fillup\" style=\"margin-top:0em;margin-bottom:1em;text-align:center\">\n <a href=\"/realtimenews/section/new/1\" title=\"1\" class=\"enable\">1</a><a href=\"/realtimenews/section/new/2\" title=\"2\">2</a><a href=\"/realtimenews/section/new/3\" title=\"3\">3</a><a href=\"/realtimenews/section/new/4\" title=\"4\">4</a><a href=\"/realtimenews/section/new/5\" title=\"5\">5</a><a href=\"/realtimenews/section/new/6\" title=\"6\">6</a><a href=\"/realtimenews/section/new/7\" title=\"7\">7</a><a href=\"/realtimenews/section/new/8\" title=\"8\">8</a><a href=\"/realtimenews/section/new/9\" title=\"9\">9</a><a href=\"/realtimenews/section/new/10\" title=\"10\">10</a><a href=\"/realtimenews/section/new/11\" title=\"下10頁\">下10頁</a> </nav>\n <span class=\"clear man\"/>\n </div>\n </div>\n <div class=\"abdominis\"/>\n </article>\n <aside id=\"sitesidecontent\" class=\"manu lvl\">\n <div id=\"rectangleAD1\" class=\"ads rtb rtf\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('rectangleAD1');})]]></script></div>\n <div id=\"rectangleAD2\" class=\"ads rtb\"><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('rectangleAD2');})]]></script></div>\n <section id=\"section-hot-sidebox\" class=\"shsb slvl clearmen shsbsports\"><header><h1>體育最<U+00A0>Hot</h1><span><a target=\"_blank\" href=\"/appledaily/hotdaily/sports\">看更多</a></span></header><article><ul><li><h2><a href=\"/appledaily/article/sports/20160710/37301993/hotdailyart_right\">好加在 再見接殺 林哲瑄救...</a></h2><span>8312</span></li><li><h2><a href=\"/appledaily/article/sports/20160710/37302101/hotdailyart_right\">給不了豪神先發 黃蜂只能說...</a></h2><span>7871</span></li><li><h2><a href=\"/appledaily/article/sports/20160710/37302087/hotdailyart_right\">李承哲 一隻腳拼SBL 車...</a></h2><span>6365</span></li><li><h2><a href=\"/appledaily/article/sports/20160710/37302105/hotdailyart_right\">騎士教頭露口風 搶台灣女婿...</a></h2><span>5580</span></li><li><h2><a href=\"/appledaily/article/sports/20160710/37302019/hotdailyart_right\">秋山秀身手 球快過郭總 鄭...</a></h2><span>4966</span></li></ul></article></section><section id=\"facebookbox\" class=\"fbbx slvl clearmen\"> \n <header> \n <h1>Facebook<U+00A0></h1> \n <a id=\"fblikebtn\" class=\"on\">蘋果粉絲團</a> \n </header>\t\t \n <article> \n <div id=\"fb-root\"/> \n <script language=\"javascript\"><![CDATA[\r\n (function(d, s, id) {\r\n var js, fjs = d.getElementsByTagName(s)[0];\r\n if (d.getElementById(id)) return;\r\n js = d.createElement(s); js.id = id;\r\n js.src = \"//connect.facebook.net/zh_TW/all.js#xfbml=1\";\r\n fjs.parentNode.insertBefore(js, fjs);\r\n }(document, 'script', 'facebook-jssdk'));\r\n ]]></script> \n <div id=\"changeFBlike\"> \n <div class=\"fb-like-box\" data-href=\"http://www.facebook.com/appledaily.tw\" data-width=\"300\" data-height=\"370\" data-show-faces=\"false\" data-stream=\"true\" data-show-border=\"true\" data-header=\"false\"/> \n </div> \n </article> \n</section> </aside>\n </div>\n <div><script type=\"text/javascript\"><![CDATA[googletag.cmd.push(function() {googletag.display('div-ad-bottom');})]]></script></div>\n <link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/dateinput_skin.css\"/> \n<div class=\"abkct clearmen\"><a onclick=\"javascript:window.scroll(0,0)\" class=\"abktp\">回到最上面</a></div> \n<section id=\"extras\" class=\"fexbr\"> \n <div class=\"sqzer fillup\"> \n <a href=\"/index/dailyquote/\" title=\"每日一句\" class=\"dyw\"><span data-tooltip=\"每天一句好話\"/>每日一句</a> \n <a href=\"/index/lottery\" title=\"樂透發票\" class=\"lnr\"><span data-tooltip=\"看看你手氣\"/>樂透發票</a> \n <a href=\"#\" title=\"線上美語\" class=\"oneg\" onclick=\"JavaScript:window.open('/index/englishlearning/','','width=650,height=495')\"><span data-tooltip=\"學習英文\"/>線上美語</a> \n <a href=\"/index/weather\" title=\"天氣\" class=\"wkw\"><span data-tooltip=\"今天一周天氣預報\"/>天氣</a> \n <a href=\"/index/complain\" title=\"爆料投訴\" class=\"rpter\"><span data-tooltip=\"爆料給蘋果\"/>爆料投訴</a> \n <a href=\"/index/prize\" title=\"中獎名單\" class=\"itul\"><span data-tooltip=\"蘋果送大獎!\">中獎名單</span></a> \n <a href=\"/index/ticket\" title=\"贈獎活動\" class=\"pguss\"><span data-tooltip=\"贈獎活動\"/>贈獎活動</a> \n <a href=\"/index/mobileguide\" title=\"行動版\" class=\"wmvs\"><span data-tooltip=\"行動版\">行動版</span></a> \n </div> \n</section> \n \n<footer id=\"corpfoot\"> \n <div class=\"sqzer\"> \n <figure><a href=\"http://www.nextdigital.com.hk/investor/\"><img src=\"http://twimg.edgesuite.net/images/NextDigital/logo_NextMedia_m.png\"/></a></figure> \n <section id=\"corpcompanies\" class=\"clearmen\"> \n <a href=\"/\" class=\"first\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_AppleDaily.png\" alt=\"蘋果日報 AppleDaily\"/></a> \n <a href=\"/animation/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_AnimatedNews.png\" alt=\"動新聞\"/></a> \n <a href=\"http://www.applelive.com.tw/livechannel/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/applelive.gif\" alt=\"蘋果Live\"/></a> \n <a href=\"http://apple360.appledaily.com.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/360logo.png\" alt=\" 蘋果360\" width=\"83\" height=\"30\"/></a> \n <a href=\"http://sharpdaily.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_SharpDaily.png\" alt=\"爽報\"/></a> \n <a href=\"http://www.nextmag.com.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_NextMag.png\" alt=\"壹周刊\"/></a> \n <a href=\"http://www.eat-travel.com.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_eatintravel.png\" alt=\"飲食男女\"/></a> \n <a href=\"http://fashion.appledaily.com.tw/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/applefashion_website_head_39x30.png\" alt=\"蘋果時尚\"/></a> \n <a href=\"http://www.tomonews.com/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/menu_tomonews_s.png\" alt=\"Tomonews\"/></a> \n <a href=\"https://www.youtube.com/user/twappledaily/\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ft_youtube.png\" alt=\"Youtube\"/></a> \n <a href=\"/teded\" class=\"last\" target=\"_blank\"><img src=\"http://twimg.edgesuite.net/appledaily/images/core/ted.png\" alt=\"Ted\"/></a> \n </section> \n \n <section id=\"corpinfo\" class=\"fillip\"> \n <a href=\"/rss/\" style=\"color:red\">RSS</a>\t\t\t\t\t \n <a href=\"/index/aboutus/\">了解蘋果日報</a> \n <a href=\"/index/contactus/\">聯絡我們</a> \n <a href=\"/adguide\" target=\"_blank\">廣告刊登</a> \n <a href=\"/index/faq/\">常見問題</a> \n <a href=\"/index/sitemap/\">網站導覽</a> \n <a href=\"/index/termofuse/\">使用條款</a> \n <a href=\"/index/authorization/\">授權申請程序</a> \n <a href=\"/index/privacy/\">隱私權說明</a> \n <a href=\"/index/disclaimer/\">免責與分級</a> \n <a href=\"/index/community/\">蘋果社群</a> \n <a href=\"http://www.facebook.com/nextmediastudent/\" target=\"_blank\">校園培果計畫</a> \n <a href=\"http://www.104.com.tw/jobbank/custjob/index.php?r=cust&j=5e3a4326486c3e6a30323c1d1d1d1d5f2443a363189j01&jobsource=checkc\" target=\"_blank\">蘋果徵才</a> \n <a href=\"/index/subscribe\" class=\"last\">訂閱蘋果</a> \n </section> \n <p id=\"copyright\">c 2016 www.appledaily.com.tw Limited. All rights reserved. 台灣蘋果日報 版權所有 不得轉載</p> \n </div> \n</footer> \n<link rel=\"stylesheet\" href=\"http://twimg.edgesuite.net/appledaily/images/css/appledaily.backtotop.css\"/> \n<script src=\"http://twimg.edgesuite.net/appledaily/images/js/jquery.appledaily.backtotop.js\"/> \n<div class=\"back-to-top-side\"><a onclick=\"javascript:window.scroll(0,0)\" class=\"back-to-top-btn overcooked\">回到最上面</a></div><!-- .back-to-top-side --> \n<script type=\"text/javascript\"><![CDATA[\r\n $(document).ready(function() {\r\n var opacity = 0.5,\r\n toOpacity = 1,\r\n duration = 250;\r\n $('.opacity').css('opacity', opacity).hover(function() {\r\n $(this).fadeTo(duration, toOpacity);\r\n }, function() {\r\n $(this).fadeTo(duration, opacity);\r\n });\r\n \r\n $(window).scroll(function() {\r\n if($(this).scrollTop()>130&&($(this).scrollTop()-(-800)<$(document).height()-350)){\r\n $('#door').css('position','fixed').css('top','-45px');\r\n }else{\r\n $('#door').css('position','relative').css('top','0px');\r\n }\r\n });\r\n });\r\n]]></script> \n \n<!-- Google Analytics --> \n<script><![CDATA[\r\n (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){\r\n (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),\r\n m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)\r\n })(window,document,'script','//www.google-analytics.com/analytics.js','ga');\r\n\r\n ga('create', 'UA-2067247-40', 'auto', {'sampleRate':1});\r\n ga('require', 'linkid', 'linkid.js');\r\n ga('require', 'displayfeatures');\r\n \r\n]]></script> \n<noscript> \n <iframe src=\"//www.googletagmanager.com/ns.html?id=GTM-P5MXMC\" height=\"0\" width=\"0\" style=\"display:none;visibility:hidden\"/> \n</noscript> \n<script><![CDATA[\r\n dataLayer = [{\r\n 'pageLevel' : 'Listing',\r\n 'videoArticle': 'non-video',\r\n 'publishDay': '', \r\n 'columnist' : '', \r\n 'column' : '' \r\n }];\r\n \r\n (function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':\r\n new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],\r\n j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src='//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);\r\n })(window,document,'script','dataLayer','GTM-P5MXMC');\r\n]]></script> \n<div id=\"nxm_iframeDiv\" style=\"display:none\"/> \n<div id=\"nxm_vtrk_iframeDiv\" style=\"display:none\"/> \n<!--page idle--> \n<link href=\"http://twimg.edgesuite.net/appledaily/images/adidle/css/Ted_fancybox.css\" rel=\"stylesheet\" type=\"text/css\"/> \n<script src=\"http://twimg.edgesuite.net/appledaily/images/adidle/js/Ted_plugin.js\"/> \n<script src=\"http://twimg.edgesuite.net/appledaily/images/adidle/js/Ted_adidle.js\"/> \n<script language=\"JavaScript\"><![CDATA[\r\n var intRand = Math.floor((Math.random()*10))%2;\r\n var strHtml = 'Ted';\r\n if(intRand>0){\r\n strHtml = 'infographic';\r\n }\r\n document.write('<a class=\"pageidle\" data-fancybox-type=\"iframe\" href=\"http://www.appledaily.com.tw/'+strHtml+'_adidle.html#'+Math.random()+'\"></a>');\r\n]]></script> \n<!--page idle--> \n </div>\n </div>\n <script type=\"text/javascript\" src=\"https://apis.google.com/js/plusone.js\"/>\n <script><![CDATA[\n $(document).ready(function($) {\n /* main carousel */\n $('#carousel').on('onInitAfter',function(e){\n $(this).find('.owl-dots').append( '<span class=\"masker\"></span>' );\n }).owlCarousel({\n mouseDrag:false,\n touchDrag:true,\n pullDrag:false,\n navText:['下一則','上一則'],\n nav:false,\n navSpeed:500,\n dotsSpeed:500,\n dots:false,\n items:1,\n autoplay:true,\n autoplayHoverPause:false,\n autoplayTimeout: 5000,\n lazyLoad:true,\n info: (typeof getInfo == 'function') ? getInfo : {},\n loop:true\n }).mouseenter(function() {\n $(this).addClass('on');\n $(this).trigger('pause.owl');\n $('#splash').addClass('on');\n }).mouseleave(function() {\n $(this).removeClass('on');\n $(this).trigger('autoplay.owl');\n $('#splash').removeClass('on');\n });\n\n $('.xPrev').click(function() {\n $('#carousel').trigger('prev.owl');\n });\n $('.xNext').click(function() {\n $('#carousel').trigger('next.owl');\n });\n\n $('.xPrev, .xNext').mouseenter(function() {\n $('#carousel').addClass('on');\n $('#carousel').trigger('pause.owl');\n $('#splash').addClass('on');\n }).mouseleave(function() {\n $('#carousel').removeClass('on');\n $('#carousel').trigger('autoplay.owl');\n $('#splash').removeClass('on');\n });\n\n /* firewire */\n $('#firewire').owlCarousel({\n mouseDrag:false,\n touchDrag:false,\n pullDrag:false,\n animateOut: 'slideOutDown-100',\n animateIn: 'slideInDown-100',\n nav:false,\n navSpeed:1000,\n dots:false,\n items:1,\n autoplay:true,\n autoplayHoverPause:true,\n autoplayTimeout: 6000,\n lazyLoad:true,\n loop:true\n });\n\n });\n\n function getInfo(owlInfo){\n $('#carousel').data('currentPosition', owlInfo['currentPosition']);\n }\n\n $( document ).ready(function() {\n var mainImgs = $('#carousel').find('.owl-item').not('.cloned').find('.item').find('img');\n var mainLinks = $('#carousel').find('.owl-item').not('.cloned').find('.item').find('a');\n\n function trackHomeMainImg(action, label) {\n if ( ga ) ga('send', 'event', 'HomeMainImg', action, label);\n if (window['console'] !== undefined) { console.log('SendGA: '+action) };\n }\n\n function isAD(imgAlt) {\n return ((imgAlt) && (imgAlt.toUpperCase().substring(0,2)==\"AD\"));\n }\n\n function mainImgView(idx) {\n var imgAlt = $(mainImgs[idx]).attr('tcode');\n if (isAD(imgAlt)) trackHomeMainImg('views', imgAlt);\n }\n\n function mainImgClick(e) {\n var imgAlt = $(e.currentTarget).find('img').attr('tcode');\n if (isAD(imgAlt)) trackHomeMainImg('clicks', imgAlt);\n };\n\n $('#carousel').on('onTransitionEnd', function(e) {\n var idx = $('#carousel').data('currentPosition');\n if ($.isNumeric(idx)) mainImgView(idx);\n });\n\n /* entry track */\n if ($('#carousel')) mainImgView(0);\n\n /* bind click event */\n $('#carousel').find('.owl-item').find('.item').find('a').click(mainImgClick);\n\n });\n ]]></script>\n <!-- YAHOO AD -->\n <script type=\"text/javascript\"><![CDATA[\n var sectionCode = sectionCode || [];\n sectionCode.push(\"3fbb0747-092b-4c67-b6dc-c522d10c2475\");\n (function(){\n var script = document.createElement(\"script\");\n script.async = true;\n script.src = \"https://s.yimg.com/av/gemini/ga/gemini.js\";\n document.body.appendChild(script);\n })();\n ]]></script>\n <!-- YAHOO AD -->\n</body>\n</html>\n"