-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
3374 lines (2752 loc) · 161 KB
/
test.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
> [email protected] start /Users/user/Sites/playspride/sprider
> node --harmony-async-await ./bin/www
<!DOCTYPE html>
<html lang="zh-tw" xmlns:fb="http://www.facebook.com/2008/fbml">
<head>
<meta charset="utf-8"/>
<title>台灣美食大搜查 - iPeen 愛評網 - 美食頻道</title>
<meta http-equiv="content-language" content="zh-Hant-TW"/>
<meta http-equiv="X-UA-Compatible" content="IE=10; IE=9; IE=8; IE=7"/>
<meta name="description" content="iPeen 愛評網擁有最豐富的台灣美食資訊,不論是台灣中式料理、日式料理、異國料理通通都在台灣美食大搜查。想知道台灣最熱門的美食嗎?iPeen 愛評網是您的第一選擇。" />
<meta name="keywords" content="美食,台灣美食" />
<meta name="apple-itunes-app" content="app-id=366479443" />
<meta property="fb:pages" content="180154523139" />
<!--[if lt IE 9]>
<script src="/js/html5shiv.js"></script>
<![endif]-->
<link rel="canonical" href="http://www.ipeen.com.tw/search/taiwan/000/1-100-0-0/" />
<link rel="next" href="http://www.ipeen.com.tw/search/taiwan/000/1-100-0-0/?p=2" />
<link rel="alternate" media="only screen and (max-width: 640px)" href="http://www.ipeen.com.tw/touch/search.php?c=1" />
<link rel="alternate" media="handheld" href="http://www.ipeen.com.tw/touch/search.php?c=1" />
<link rel="shortcut icon" href="http://www.ipeen.com.tw/favicon.ico">
<link href="/css/v2/header.css" rel="stylesheet" type="text/css" />
<link href="/css/path.css" rel="stylesheet" type="text/css"/>
<link href="/css/ahref/ahrefstyle.css" rel="stylesheet" type="text/css" />
<link href="/css/v2/search.css" rel="stylesheet" type="text/css" />
<link href="/css/v2/page.css" rel="stylesheet" type="text/css" />
<script type="text/javascript" src="/js/jquery/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="/js/jquery/jquery.cookie.js"></script>
<script type="text/javascript" src="/js/jquery/jquery.autocomplete.pack.js"></script>
<script type="text/javascript" src="/js/ui/prompted_edit.js"></script>
<script type="text/javascript" src="/js/comm.js"></script>
<script type="text/javascript" src="/js/click_count.js"></script>
<script type="text/javascript" src="/js/dialog_page.js"></script>
<script type="text/javascript" src="/js/facebook/common.js"></script>
<script type="text/javascript" src="/js/push/iPeenPush.js"></script>
<script type="text/javascript" src="/js/search/push-search.js"></script>
<script type='text/javascript'>
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
(function() {
var gads = document.createElement('script');
gads.async = true;
gads.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
gads.src = (useSSL ? 'https:' : 'http:') +
'//www.googletagservices.com/tag/js/gpt.js';
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(gads, node);
})();
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/65829459/Web_all_diamond-title_left_1200', [250, 22], 'div-gpt-ad-1383290806662-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/65829459/Web_all_diamond-title_middle-left_1200', [250, 22], 'div-gpt-ad-1383291166432-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/65829459/Web_all_diamond-title_middle-right_1200', [250, 22], 'div-gpt-ad-1383291190522-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/65829459/Web_all_diamond-title_right_1200', [250, 22], 'div-gpt-ad-1383291215171-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<!-- Begin comScore Tag -->
<script>
var _comscore = _comscore || [];
_comscore.push({ c1: "2", c2: "18271341" });
(function() {
var s = document.createElement("script"), el = document.getElementsByTagName("script")[0]; s.async = true;
s.src = (document.location.protocol == "https:" ? "https://sb" : "http://b") + ".scorecardresearch.com/beacon.js";
el.parentNode.insertBefore(s, el);
})();
</script>
<noscript>
<img src="http://b.scorecardresearch.com/p?c1=2&c2=18271341&cv=2.0&cj=1" />
</noscript>
<!-- End comScore Tag -->
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/65829459/Web_search_headline_one', [160, 250], 'div-gpt-ad-1382696717642-0').addService(googletag.pubads()).setCollapseEmptyDiv(true,true);
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/65829459/Web_search_headline_two', [160, 250], 'div-gpt-ad-1382696815121-0').addService(googletag.pubads()).setCollapseEmptyDiv(true,true);
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/65829459/Web_search_left_under_2', [160, 600], 'div-gpt-ad-1401076700950-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type='text/javascript'>
googletag.cmd.push(function() {
googletag.defineSlot('/65829459/Web_search_middle_under', [468, 60], 'div-gpt-ad-1389335556579-0').addService(googletag.pubads());
googletag.pubads().enableSingleRequest();
googletag.enableServices();
});
</script>
<script type="text/javascript" charset="utf-8">
(function(G,o,O,g,L,e){G[g]=G[g]||function(){(G[g]['q']=G[g]['q']||[]).push(
arguments)},G[g]['t']=1*new Date;L=o.createElement(O),e=o.getElementsByTagName(
O)[0];L.async=1;L.src='//www.google.com/adsense/search/async-ads.js';
e.parentNode.insertBefore(L,e)})(window,document,'script','_googCsa');
</script>
<!-- OneAD InRead 開始 -->
<script type="text/javascript">
var ONEAD = {};
ONEAD.channel = 77; // iPeen 愛評網
ONEAD.volume = 0.5; // range is 0 to 1 (float)
ONEAD.slot_limit = {width: 1000, height: 420};
// optional(s)
ONEAD.slot_limit_multiple = {
inread: {
width: 594,
height: 420
}
};
ONEAD.response_freq = {start:1, step: 3};
ONEAD.category = "-1";
ONEAD.response_freq_multiple = {
inread: "1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20"
};
ONEAD.cmd = ONEAD.cmd || [];
</script>
<script type="text/javascript">
// For OneAD, DON'T MODIFY the following
if (typeof(ONEAD) !== "undefined"){
ONEAD.uid = "1000047";
ONEAD.external_url = "http://onead.onevision.com.tw/"; // base_url, post-slash is necessary
ONEAD.wrapper = 'ONEAD_player_wrapper';
ONEAD.wrapper_multiple = {
instream: "ONEAD_player_wrapper", // equals to inpage
inread: "ONEAD_inread_wrapper",
incover: "ONEAD_incover_wrapper"
};
}
if (typeof window.isip_js == "undefined") {
(function() {
var src = '//ad-specs.guoshipartners.com/static/js/isip.js';
var js = document.createElement('script');
js.async = true;
js.type = 'text/javascript';
var useSSL = 'https:' == document.location.protocol;
js.src = src;
var node = document.getElementsByTagName('script')[0];
node.parentNode.insertBefore(js, node.nextSibling); // insert after
})();
}
</script>
<script type="text/javascript">
ONEAD_on_get_response = function(param){
// if there is no pid, param is {}, it's not null
if (param === null || param.pid === undefined){
// 沒廣告
}else{
var t = setInterval(function(){
if (ONEAD_is_above(100)){ }
}, 1000);
}
}
// 這個函式名稱是固定的,廣告播放完畢會呼叫之
function changeADState(obj){
if (obj.newstate == 'COMPLETED' || obj.newstate == 'DELETED' ){
if (ONEAD.play_mode == 'incover'){
// remove the dimming block
ONEAD_cleanup(ONEAD.play_mode);
}else{
ONEAD_cleanup();
}
}
}
</script>
<!-- OneAD InRead 結束 -->
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript" charset="utf-8">
google.load('ads.search', '2');
</script>
</head>
<body>
<script type="text/javascript">
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];
a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-2241395-2');
ga('require', 'displayfeatures');
ga('send', 'pageview');
</script>
<script src="//d17m68fovwmgxj.cloudfront.net/js/appier-track-v1.7.js"></script>
<script type="text/javascript" src="/js/tour/add.js"></script>
<script type="text/javascript">
(function ( $ ) {
TOURADD.trunk();
})(jQuery);
</script>
<header id="header">
<div class="hdTop" >
<div class="hdMid" style="" >
<div class="hdSet">
<a style="" id="header_favorite" href="javascript: void(0);" class="a37 ga_tracking" data-category="Home_header" data-action="header_mylove" data-label="我的最愛">加到我的最愛</a><span>|</span>
<a style="" href="/newcmm/" data-http="/ad/blockclick.php?page=/search/index.php&block=headuser&key=0&next=/newcmm/" class="a37 ga_tracking" data-category="Home_header" data-action="header_new" data-label="最新分享">最新分享</a><span>|</span>
<a style="" href="/action/" data-http="/ad/blockclick.php?page=/search/index.php&block=headuser&key=1&next=/action/" class="a37 ga_tracking" data-category="Home_header" data-action="header_hot" data-label="HOT燒活動">HOT燒活動</a><span>|</span>
<a style="" href="/group/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=8&next=/group/" class="a37 ga_tracking" data-category="Home_header" data-action="header_group" data-label="幫會">幫會</a><span>|</span>
<a style="" href="/lottery/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=8&next=/lottery/" class="a37 ga_tracking" data-category="Home_header" data-action="header_group" data-label="獎勵">獎勵</a>
</div>
<div style="" class="hdLogin">
<span class="header_greeting" >早</span>安,訪客<span>|</span>
<a style="" href="/login/?next=" data-http="/ad/blockclick.php?page=/search/index.php&block=headuser&key=13&next=/login/%3Fnext=" id="loginLink" class="a37 loginLink">會員登入</a><span>|</span>
<a style="" class="facebookiPeen" href="javascript: void(0)"><img src="http://iphoto.ipeen.com.tw/images/v2/hp/search/btn_fblogin.gif" alt="使用Facebook帳號登入" title="使用Facebook帳號登入" /></a><span>|</span>
<a style="" class="yahooiPeen" href="javascript:location.href='/login/yahoo_auth.php?login=1&next='+window.location;"><img src="http://iphoto.ipeen.com.tw/images/v2/hp/search/btn_yahoologin.gif" alt="使用yahoo帳號登入" title="使用yahoo帳號登入" /></a><span>|</span>
<!-- <a style="" href="/premium/premium_login.php" data-http="/ad/blockclick.php?page=/search/index.php&block=headuser&key=14&next=/ad/adipeen.php%3Fid%3Dd6c3fa17d34c7a309cda6d93c069bec3" class="a37">合作商家登入</a><span>|</span> -->
<a style="" href="/public/index.php?id=39785c5f3c535f93bf705c58b8e104ed" class="a37">合作店家登入</a><span>|</span>
<a style="" href="/register/index.php" data-http="/ad/blockclick.php?page=/search/index.php&block=headuser&key=15&next=/register/index.php" class="a37">免費註冊會員</a>
</div>
<script type="text/javascript" src="/js/facebook/index_fb_login.js"></script>
<div class="clearfix"></div>
</div>
</div>
<div class="hdCenter">
<script type="text/javascript">
var styleClose = '';
</script>
<script type="text/javascript" src="/js/index/userInfo.js"></script>
<div class="hdMain hdMid">
<script src="/js/swfobject.js" type="text/javascript"></script>
<div class="hdLogo">
<a data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=34&next=/" href="/ad/blockclick.php?page=/search/index.php&block=main&key=34&next=/">
<!-- <img src="/images/v2/hp/header/logo_2014.png" alt="iPeen愛評網" title="iPeen愛評網">
-->
<span> </span>
</a>
</div>
<div id="lbsSelector" class="hdLbs">
<label class="hdCity selectorTarget">全台灣</label>
<div class="hdTwDown">
<div class="hdTw selectorMenu" style="display:none;">
<div class="hdTwpart " >
<b>不限:</b>
<ul>
<li data-value="taiwan"
class="selected"
>
<a href="" title="全台灣">全台灣</a>
</li>
</ul>
</div>
<div class="hdTwpart " >
<b>北部:</b>
<ul>
<li data-value="keelung"
city-value="2"
>
<a href="" title="基隆市">基隆市</a>
</li>
<li data-value="taipei"
city-value="3"
>
<a href="" title="台北市">台北市</a>
</li>
<li data-value="xinbei"
city-value="4"
>
<a href="" title="新北市">新北市</a>
</li>
<li data-value="taoyuan"
city-value="6"
>
<a href="" title="桃園市">桃園市</a>
</li>
<li data-value="hsinchu"
city-value="7"
>
<a href="" title="新竹市">新竹市</a>
</li>
<li data-value="hsinchucounty"
city-value="8"
>
<a href="" title="新竹縣">新竹縣</a>
</li>
<li data-value="miaoli"
city-value="9"
>
<a href="" title="苗栗縣">苗栗縣</a>
</li>
</ul>
</div>
<div class="hdTwpart " >
<b>中部:</b>
<ul>
<li data-value="taichung"
city-value="10"
>
<a href="" title="台中市">台中市</a>
</li>
<li data-value="nantou"
city-value="12"
>
<a href="" title="南投縣">南投縣</a>
</li>
<li data-value="changhua"
city-value="13"
>
<a href="" title="彰化縣">彰化縣</a>
</li>
<li data-value="yunlin"
city-value="14"
>
<a href="" title="雲林縣">雲林縣</a>
</li>
</ul>
</div>
<div class="hdTwpart " >
<b>南部:</b>
<ul>
<li data-value="chiayi"
city-value="15"
>
<a href="" title="嘉義市">嘉義市</a>
</li>
<li data-value="chiayicounty"
city-value="16"
>
<a href="" title="嘉義縣">嘉義縣</a>
</li>
<li data-value="tainan"
city-value="17"
>
<a href="" title="台南市">台南市</a>
</li>
<li data-value="kaohsiung"
city-value="20"
>
<a href="" title="高雄市">高雄市</a>
</li>
<li data-value="pingtung"
city-value="21"
>
<a href="" title="屏東縣">屏東縣</a>
</li>
</ul>
</div>
<div class="hdTwpart " >
<b>東部:</b>
<ul>
<li data-value="ilan"
city-value="5"
>
<a href="" title="宜蘭縣">宜蘭縣</a>
</li>
<li data-value="hualien"
city-value="22"
>
<a href="" title="花蓮縣">花蓮縣</a>
</li>
<li data-value="taitung"
city-value="23"
>
<a href="" title="台東縣">台東縣</a>
</li>
</ul>
</div>
<div class="hdTwpart " >
<b>離島:</b>
<ul>
<li data-value="penghu"
city-value="26"
>
<a href="" title="澎湖縣">澎湖縣</a>
</li>
<li data-value="lianjiang"
city-value="27"
>
<a href="" title="連江縣">連江縣</a>
</li>
<li data-value="kinmen"
city-value="28"
>
<a href="" title="金門縣">金門縣</a>
</li>
</ul>
</div>
<div class="hdTwpart otherCountry" style="border:0; display:none;" >
<b>其它:</b>
<ul>
<li data-value="foreign"
country-value="100"
>
<a href="" title="台灣以外">台灣以外</a>
</li>
<li data-value="america"
country-value="2"
>
<a href="" title="美國">美國</a>
</li>
<li data-value="canada"
country-value="3"
>
<a href="" title="加拿大">加拿大</a>
</li>
<li data-value="mexico"
country-value="4"
>
<a href="" title="墨西哥">墨西哥</a>
</li>
<li data-value="italy"
country-value="5"
>
<a href="" title="義大利">義大利</a>
</li>
<li data-value="france"
country-value="6"
>
<a href="" title="法國">法國</a>
</li>
<li data-value="germany"
country-value="7"
>
<a href="" title="德國">德國</a>
</li>
<li data-value="england"
country-value="8"
>
<a href="" title="英國">英國</a>
</li>
<li data-value="russian"
country-value="9"
>
<a href="" title="俄羅斯">俄羅斯</a>
</li>
<li data-value="japan"
country-value="10"
>
<a href="" title="日本">日本</a>
</li>
<li data-value="korea"
country-value="11"
>
<a href="" title="韓國">韓國</a>
</li>
<li data-value="china"
country-value="12"
>
<a href="" title="中國">中國</a>
</li>
<li data-value="hongkong"
country-value="13"
>
<a href="" title="香港">香港</a>
</li>
<li data-value="macao"
country-value="14"
>
<a href="" title="澳門">澳門</a>
</li>
<li data-value="thailand"
country-value="15"
>
<a href="" title="泰國">泰國</a>
</li>
<li data-value="vietnam"
country-value="16"
>
<a href="" title="越南">越南</a>
</li>
<li data-value="singapore"
country-value="17"
>
<a href="" title="新加坡">新加坡</a>
</li>
<li data-value="philippines"
country-value="18"
>
<a href="" title="菲律賓">菲律賓</a>
</li>
<li data-value="india"
country-value="19"
>
<a href="" title="印度">印度</a>
</li>
<li data-value="brazil"
country-value="20"
>
<a href="" title="巴西">巴西</a>
</li>
<li data-value="australia"
country-value="21"
>
<a href="" title="澳洲">澳洲</a>
</li>
<li data-value="zealand"
country-value="22"
>
<a href="" title="紐西蘭">紐西蘭</a>
</li>
<li data-value="czech"
country-value="24"
>
<a href="" title="捷克">捷克</a>
</li>
<li data-value="greece"
country-value="25"
>
<a href="" title="希臘">希臘</a>
</li>
<li data-value="indonesia"
country-value="26"
>
<a href="" title="印尼">印尼</a>
</li>
<li data-value="malaysia"
country-value="27"
>
<a href="" title="馬來西亞">馬來西亞</a>
</li>
<li data-value="southafrica"
country-value="28"
>
<a href="" title="南非">南非</a>
</li>
<li data-value="switzerland"
country-value="29"
>
<a href="" title="瑞士">瑞士</a>
</li>
<li data-value="myanmar"
country-value="30"
>
<a href="" title="緬甸">緬甸</a>
</li>
<li data-value="netherlands"
country-value="31"
>
<a href="" title="荷蘭">荷蘭</a>
</li>
<li data-value="spain"
country-value="32"
>
<a href="" title="西班牙">西班牙</a>
</li>
<li data-value="turkey"
country-value="33"
>
<a href="" title="土耳其">土耳其</a>
</li>
<li data-value="others"
country-value="23"
>
<a href="" title="其他">其他</a>
</li>
</ul>
</div>
<div class="showForeign"><a>» 顯示台灣以外的國家</a></div>
</div>
</div>
</div>
<script type="text/javascript">
var LBS_DATE_LIST = {"QUERY_STRING":"ia=taiwan&cpost=000&c=1&d=100&e=0&f=0","PATH_NAME":"","COOKIE_NAME":"lbsa","COOKIE_SET":"lbss","COOKIE_TIME":1209600};
</script>
<div class="hdr">
<div class="hdApp">
<img alt="" title="" src="http://iphoto.ipeen.com.tw/images/v2/hp/header/iconPhone.gif" style=" margin-right:3px; position:relative; top:2px;"/>
<a href="http://www.ipeen.com.tw/ad/adipeen.php?id=ce3942cf29dee0ae49fddb27042eafa8" class="a37">想找熱門、在地美食優惠?愛評生活通都有!</a>
</div>
<nav class="hdTags">
<ul>
<li>
<a href="/taiwan/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=0&next=/taiwan/">
首頁<img alt="" src="http://iphoto.ipeen.com.tw/images/v2/hp/header/iconBarrow.png" class="hdUnder"/>
</a>
<div class="hdNav hide" menu="child" >
<a href="/taiwan/newcmm/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=11&next=/taiwan/newcmm/" class="a37">最新分享</a>
<a href="/announcement/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=12&next=/announcement/" class="a37">最新公告</a>
<a href="/action/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=13&next=/action/" class="a37">HOT燒活動</a>
<a href="/vote/vote.php" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=14&next=/vote/vote.php" class="a37">全民公投</a>
</div>
</li>
<li>
<a href="/taiwan/newcmm/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=30&next=/taiwan/newcmm/">
最新分享
</a>
</li>
<li>
<a href="/taiwan/rank/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=6&next=/taiwan/rank/">
排行榜
</a>
</li>
<li>
<a href="/focus/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=5&next=/focus/">
精選情報<img alt="" src="http://iphoto.ipeen.com.tw/images/v2/hp/header/iconBarrow.png" class="hdUnder"/>
</a>
<div class="hdNav hide" menu="child" >
<a href="/focus/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=27&next=/focus/" class="a37">精選特輯</a>
<a href="/taiwan/media/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=28&next=/taiwan/media/" class="a37">媒體情報</a>
<a href="/taiwan/media/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=28&next=/taiwan/media/%3Fmedia_kind%3D450" class="a37">愛評賞味報</a>
<a href="http://content.ipeen.com.tw/exptour/article" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=31&next=http://content.ipeen.com.tw/exptour/article" class="a37">愛評體驗團</a>
</div>
</li>
<li>
<a href="http://service.ipeen.com.tw/reputation/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=0&next=http://service.ipeen.com.tw/reputation/">
口碑券<img alt="" src="http://iphoto.ipeen.com.tw/images/v2/hp/header/iconBarrow.png" class="hdUnder"/>
</a>
<div class="hdNav hide" menu="child" >
<a href="http://service.ipeen.com.tw/reputation/list/new" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=19&next=http://service.ipeen.com.tw/reputation/list/new" class="a37">最新預告</a>
<a href="http://service.ipeen.com.tw/reputation/list/now" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=20&next=http://service.ipeen.com.tw/reputation/list/now" class="a37">熱門兌換中</a>
<a href="/taiwan/newcmm/R" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=21&next=/taiwan/newcmm/R" class="a37">最新口碑券分享</a>
</div>
</li>
<li>
<a href="/taiwan/benefit/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=3&next=/taiwan/benefit/">
優惠/ KoKo
</a>
</li>
<li>
<a href="http://service.ipeen.com.tw/flash_buy/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=3&next=http://service.ipeen.com.tw/flash_buy/">
愛吃閃購<img alt="" src="http://iphoto.ipeen.com.tw/images/v2/hp/header/iconNew.gif" style="position:absolute; top:-4px; right:-5px;"/>
</a>
</li>
<li>
<a href="/map/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=7&next=/map/">
地圖快搜
</a>
</li>
<!-- <li>
<a href="/checkin/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=29&next=/checkin/">
即時愛評
</a>
</li> -->
<!-- <li>
<a href="/lottery/" data-http="/ad/blockclick.php?page=/search/index.php&block=main&key=9&next=/lottery/">
獎勵
</a>
</li> -->
<li class="clearfix"></li>
</ul>
</nav>
</div>
<div class="clearfix"></div>
</div>
<div class="hdRed">
<div class="hdMid">
<div class="hdChannel">
<a href="javascript:void(0);" show="ch" class="hdAll a37 " >全部頻道</a>
<div show="ch" class="hdSelect hide " >
<div class="showAll">
<div ><a href="/taiwan/channel/F" data-http="/ad/blockclick.php?page=/search/index.php&block=channel&key=1&next=/taiwan/channel/F" class="ga_tracking" data-category="Home_header" data-action="header_F" data-label="美食">美食</a></div>
<div ><a href="/taiwan/channel/P" data-http="/ad/blockclick.php?page=/search/index.php&block=channel&key=2&next=/taiwan/channel/P" class="ga_tracking" data-category="Home_header" data-action="header_P" data-label="休閒旅遊">休閒旅遊</a></div>
<div>
<a href="/play/" data-http="/ad/blockclick.php?page=/search/index.php&block=channel&key=3&next=/play/" class="ga_tracking" data-category="Home_header" data-action="header_movie" data-label="影音藝文">影音藝文
<img alt="new" style="vertical-align:middle; margin-left:8px;" src="http://iphoto.ipeen.com.tw/images/v2/hp/header/iconNew.gif">
</a>
</div>
<div ><a href="/taiwan/channel/C" data-http="/ad/blockclick.php?page=/search/index.php&block=channel&key=4&next=/taiwan/channel/C" class="ga_tracking" data-category="Home_header" data-action="header_C" data-label="美容美妝">美容美妝</a></div>
<div ><a href="/taiwan/channel/W" data-http="/ad/blockclick.php?page=/search/index.php&block=channel&key=5&next=/taiwan/channel/W" class="ga_tracking" data-category="Home_header" data-action="header_W" data-label="3C商品">3C商品</a></div>
<div ><a href="/taiwan/channel/L" data-http="/ad/blockclick.php?page=/search/index.php&block=channel&key=6&next=/taiwan/channel/L" class="ga_tracking" data-category="Home_header" data-action="header_L" data-label="生活服務">生活服務</a></div>
</div>
<div class="btmBg"></div>
</div>
</div>
<form id="headersearch" name="headersearch" method="get" action="/search/index.php">
<div class="hdSearch">
<div class="keyWord">
<a id="SELECTBAR" href="javascript:void(0);" c="100" ShowName="全部" scls="" class="selectType" >全部</a>
<ul class="listType" ShowName="none" style="display: none; z-index:2" >
<li><a href="javascript:void(0);" scls="" c="100" ShowName="全部" item="關鍵字 或 店名" >全部</a></li>
<li><a href="javascript:void(0);" scls="food" c="0" ShowName="美食店家" item="關鍵字 或 店名" >美食店家</a></li>
<li><a href="javascript:void(0);" scls="pfood" c="1" ShowName="實體包裝食品" item="產品名稱,例如:乖乖" >實體包裝食品</a></li>
<li><a href="javascript:void(0);" scls="netbuy" c="14" ShowName="網購包裝食品" item="產品名稱或品牌,例如:金口福" >網購包裝食品</a></li>
<li><a href="javascript:void(0);" scls="inn" c="6" ShowName="住宿" item="關鍵字 或 店名" >住宿</a></li>
<li><a href="javascript:void(0);" scls="view" c="7" ShowName="景點" item="關鍵字 或 店名" >景點</a></li>
<li><a href="javascript:void(0);" scls="mov" c="2" ShowName="電影" item="片名、演員或導演" >電影</a></li>
<li><a href="javascript:void(0);" scls="book" c="16" ShowName="書籍" item="書名、作者或出版社" >書籍</a></li>
</ul>
<span id="kwblock" >
<input type="text" style="width:110px; line-height:27px;" value="" name="kw" id="kw" placeholder=" 關鍵字 或 店名" />
</span>
<span id="mapblock" class="hide" >
<input name="addrs" id="addrs" style="width:360px; line-height:27px;" type="text" class="srh_map" />
</span>
</div>
<div class="addr" id="adkwblock" >
<input type="text" class="srh_add" name="adkw" id="adkw" value="" force="0" style="width:220px;line-height:27px;" />
</div>
<input type="hidden" name="d" id="d" value=""/>
<input type="hidden" name="bar" id="bar" value="1"/>
<input type="submit" class="hide" />
<a href="javascript:void(0);" class="beBtn searchBtn btnSearch">搜尋</a>
</div>
</form>
<div class="hdAdd">
<a class="beBtn button addshopBtn" href="/addshop/addshop_search.php" data-http="/ad/blockclick.php?page=/search/index.php&block=headbar&key=0&next=/addshop/addshop_search.php" title="新增商家、景點、商品"><span>新增店家/景點</span></a>
<a class="beBtn button addcmmBtn" href="/addcmm/addcmm_search.php" data-http="/ad/blockclick.php?page=/search/index.php&block=headbar&key=1&next=/addcmm/addcmm_search.php" title="發表文章"><span>發表文章</span></a>
<a class="beBtn button addtourBtn" href="/tour/step1.php" data-http="/ad/blockclick.php?page=/search/index.php&block=headbar&key=2&next=/tour/step1.php" title="規劃你的旅遊行程"><span>旅遊規劃</span></a>
</div>
<div class="clearfix"></div>
</div>
</div>
</div>
</header>
<div class="top_golden_link" style="background-color: #fff;">
<table>
<tr>
<td>
<!-- Web_all_diamond-title_left_1200 -->
<div id='div-gpt-ad-1383290806662-0' style='width:250px; height:22px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1383290806662-0'); });
</script>
</div>
</td>
<td>
<!-- Web_all_diamond-title_middle-left_1200 -->
<div id='div-gpt-ad-1383291166432-0' style='width:250px; height:22px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1383291166432-0'); });
</script>
</div>
</td>
<td>
<!-- Web_all_diamond-title_middle-right_1200 -->
<div id='div-gpt-ad-1383291190522-0' style='width:250px; height:22px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1383291190522-0'); });
</script>
</div>
</td>
<td>
<!-- Web_all_diamond-title_right_1200 -->
<div id='div-gpt-ad-1383291215171-0' style='width:250px; height:22px;'>
<script type='text/javascript'>
googletag.cmd.push(function() { googletag.display('div-gpt-ad-1383291215171-0'); });
</script>
</div>
</td>
</tr>
</table>
</div>
<script type="text/javascript" src="/js/header.js?v=14015"></script>
<script type="text/javascript" >
var header_template_script_name = '/search/index.php';
</script>
<script type="text/javascript" src="/js/index/all_channels_dropdown.js"></script>
<div class="v2bd">
<div id="search">
<aside class="serLeft">
<div class="choose">
<div class="nav">
<strong class="topic">優惠篩選</strong>
<ul class="current">
<li>
<ul>
<li>
<a class="coupon ga_tracking" data-category="search" data-action="filter_benefit" data-label="愛吃閃購券" coupon="90">愛吃閃購券</a>
</li>
<li>
<a class="coupon ga_tracking" data-category="search" data-action="filter_benefit" data-label="賺KoKo回饋金" coupon="20">賺KoKo回饋金</a>
</li>
<li>
<a class="coupon ga_tracking" data-category="search" data-action="filter_benefit" data-label="花KoKo回饋金" coupon="80">花KoKo回饋金</a>
</li>
<li>
<a class="coupon ga_tracking" data-category="search" data-action="filter_benefit" data-label="愛評會員福利" coupon="10">愛評會員福利</a>
</li>
</ul>
</li>
</ul>
</div>
<div class="nav">
<strong class="topic">選擇頻道</strong>
<ul >
<li><a class="channel ga_tracking" data-category="search" data-action="filter_channel" data-label="全部頻道" channel="1"><strong>« 全部頻道</strong></a></li>
<li>
<ul class="current" >
<li><strong>美食</strong></li>
<li>
<ul >
<li><a href="" level="3" index="0" category="d" class="a_search_location channelAdd ga_tracking" data-category="search" data-action="filter_channel" data-label="美食店家" >« 美食店家(141094)</a></li>
<li><a href="" level="3" index="1" category="d" class="a_search_location channelAdd ga_tracking" data-category="search" data-action="filter_channel" data-label="實體包裝食品" >« 實體包裝食品(9232)</a></li>
<li><a href="" level="3" index="14" category="d" class="a_search_location channelAdd ga_tracking" data-category="search" data-action="filter_channel" data-label="網購包裝食品" >« 網購包裝食品(8650)</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="nav">
<strong class="topic">選擇地區</strong>
<ul class="current">
<li><a href="" category="t" index="a" level="1" class="addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="全部地區">« 全部地區</a></li>
<li><strong> 台灣</strong></li>
<li>
<ul>
<li><a href="" category="city" index="3" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="台北市">台北市(36043)</a></li>
<li><a href="" category="city" index="4" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="新北市">新北市(20909)</a></li>
<li><a href="" category="city" index="10" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="台中市">台中市(20057)</a></li>
<li><a href="" category="city" index="20" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="高雄市">高雄市(16780)</a></li>
<li><a href="" category="city" index="17" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="台南市">台南市(10296)</a></li>
<li><a href="" category="city" index="6" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="桃園市">桃園市(9241)</a></li>
<li><a href="" category="city" index="13" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="彰化縣">彰化縣(3584)</a></li>
<li><a href="" category="city" index="7" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="新竹市">新竹市(3440)</a></li>
<li><a href="" category="city" index="5" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="宜蘭縣">宜蘭縣(2708)</a></li>
<li><a href="" category="city" index="21" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="屏東縣">屏東縣(2538)</a></li>
<li><a href="" category="city" index="8" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="新竹縣">新竹縣(1896)</a></li>
<li><a href="" category="city" index="12" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="南投縣">南投縣(1743)</a></li>
<li><a href="" category="city" index="9" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="苗栗縣">苗栗縣(1702)</a></li>
<li><a href="" category="city" index="15" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="嘉義市">嘉義市(1671)</a></li>
<li><a href="" category="city" index="22" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="花蓮縣">花蓮縣(1635)</a></li>
<li><a href="" category="city" index="2" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="基隆市">基隆市(1492)</a></li>
<li><a href="" category="city" index="14" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="雲林縣">雲林縣(1427)</a></li>
<li><a href="" category="city" index="19" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="高雄市">高雄市(1002)</a></li>
<li><a href="" category="city" index="23" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="台東縣">台東縣(826)</a></li>
<li><a href="" category="city" index="16" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="嘉義縣">嘉義縣(817)</a></li>
<li><a href="" category="city" index="18" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="台南市">台南市(604)</a></li>
<li><a href="" category="city" index="26" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="澎湖縣">澎湖縣(394)</a></li>
<li><a href="" category="city" index="28" level="2" class="a_search_location addrAdd ga_tracking" data-category="search" data-action="filter_area" data-label="金門縣">金門縣(198)</a></li>