forked from andrewkim365/AKjs.Mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemo.html
1815 lines (1783 loc) · 93.4 KB
/
demo.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no,minimal-ui" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="renderer" content="webkit" />
<meta name="full-screen" content="yes" />
<meta name="x5-fullscreen" content="true" />
<meta name="format-detection" content="telphone=no, email=no" />
<meta name="apple-mobile-web-app-status-bar-style" content="default" />
<title>AKjs移动端框架</title>
<link rel="stylesheet" type="text/css" href="css/style.css" /><!--公共样式以及布局相关样式-->
<link rel="stylesheet" type="text/css" href="css/theme.default.css" /><!--颜色相关样式-->
<script type="text/javascript" src="https://ajax.aspnetcdn.com/ajax/jquery/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/data.js"></script><!--Json数据-->
<script type="text/javascript" src="js/akjs.mobile.min.js"></script><!--AKjs引入-->
<script type="text/javascript" src="js/plugin.js"></script><!--功能插件按需引入-->
</head>
<body>
<!----------Andrew_PopupWin---------->
<header class="press bor_bottom bor_gray_ddd bg_gray_f9f">
<h1 class="text_al_c">AKjs移动端框架</h1>
<button type="button" class="right_0 w_25 pr_3 text_al_r text_12em" id="plug_menu"><i class="text_14em icon-im_fenlei"></i></button>
</header>
<main>
<!----------Andrew_Typeahead---------->
<form action="#" method="get" onsubmit="return false;">
<div class="module press ovh bg_white bor_bottom bor_gray_ddd">
<fieldset class="ml_3 mr_3 pl_2em rel h_24em mt_05em mb_05em ovh bor_rad_05em border bor_gray_ddd bg_gray_f9f">
<i class="abs left_0 ml_03em text_14em c_gray_999 line_h_18em icon-im_sousuo_b"></i>
<input type="search" class="plug_Typeahead c_gray_777 w_100 h_in" placeholder="请输入搜索关键词(例:北京)" value="" />
</fieldset>
</div>
</form>
<!----------Andrew_Slider---------->
<div class="plug_slider w_100 h_12_em ovh rel">
<ul>
<li><img src="img/tibet-1.jpg"></li>
<li><img src="img/tibet-2.jpg"></li>
<li><img src="img/tibet-3.jpg"></li>
</ul>
</div>
<!----------Andrew_Tabs---------->
<div class="plug_tabs mt_5">
<nav class="ovh press bg_white">
<ul class="ovh list_h_3em nav_line">
<li class="fl rel pl_1em pr_1em text_al_c bor_bottom2 bor_title c_title pointer touchstart">Tab-1</li> <!--增加id="plug_tab1" 可使用Ajax请求-->
<li class="fl rel pl_1em pr_1em text_al_c bor_bottom bor_gray_ddd pointer touchstart">Tab-2</li> <!--增加id="plug_tab2" 可使用Ajax请求-->
<li class="fl rel pl_1em pr_1em text_al_c bor_bottom bor_gray_ddd pointer touchstart">Tab-3</li> <!--增加id="plug_tab3" 可使用Ajax请求-->
<li class="fl rel pl_1em pr_1em text_al_c bor_bottom bor_gray_ddd pointer touchstart">Tab-4</li> <!--增加id="plug_tab4" 可使用Ajax请求-->
</ul>
</nav>
<article class="rel ovh">
<div class="rel ovh bg_white">
<section class="rel ovh">
<div class="ma_3 c_gray_777 line_h_18em"> <!--增加id="plug_ajax1" 可使用Ajax请求-->
欢迎使用AKjs移动端jQuery插件。<br>
请左右滑动该区域切换Tabs的内容。<br>
当前内容是Tabs的第一个页面1。
</div>
</section>
<section class="rel ovh">
<div class="ma_3 c_gray_777 line_h_18em"> <!--增加id="plug_ajax2" 可使用Ajax请求-->
欢迎使用AKjs移动端jQuery插件。<br>
请左右滑动该区域切换Tabs的内容。<br>
当前内容是Tabs的第二个页面2。
</div>
</section>
<section class="rel ovh">
<div class="ma_3 c_gray_777 line_h_18em"> <!--增加id="plug_ajax3" 可使用Ajax请求-->
欢迎使用AKjs移动端jQuery插件。<br>
请左右滑动该区域切换Tabs的内容。<br>
当前内容是Tabs的第三个页面3。
</div>
</section>
<section class="rel ovh">
<div class="ma_3 c_gray_777 line_h_18em"> <!--增加id="plug_ajax4" 可使用Ajax请求-->
欢迎使用AKjs移动端jQuery插件。<br>
请左右滑动该区域切换Tabs的内容。<br>
当前内容是Tabs的第四个页面4。
</div>
</section>
</div>
</article>
</div>
<!----------Andrew_StepOrder---------->
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">步骤效果</h3>
<article class="plug_step pa_3 bg_white dis_none">
<ul class="length4">
<li>
<strong class="wh_3em line_h_3em bg_gray_ccc c_white border2 bor_white bor_rad_50">1</strong>
<h6 class="c_gray_777 line_h_24em">同意条款</h6>
</li>
<li>
<strong class="wh_3em line_h_3em bg_gray_ccc c_white border2 bor_white bor_rad_50">2</strong>
<h6 class="c_gray_777 line_h_24em">提交信息</h6>
</li>
<li>
<strong class="wh_3em line_h_3em bg_gray_ccc c_white border2 bor_white bor_rad_50">3</strong>
<h6 class="c_gray_777 line_h_24em">验证信息</h6>
</li>
<li>
<strong class="wh_3em line_h_3em bg_gray_ccc c_white border2 bor_white bor_rad_50">4</strong>
<h6 class="c_gray_777 line_h_24em">已完成</h6>
</li>
</ul>
</article>
</div>
<!----------Andrew_Dialog & Andrew_PopupWin---------->
<div class="module press bg_white mt_5 pb_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">按钮效果</h3>
<button type="button" class="mt_5 btn_h_au wm_94 bg_title c_white h_32em" id="plug_popup">Popup Window</button>
<button type="button" class="mt_5 btn_h_au wm_94 bg_title c_white h_32em" id="plug_webToast">Webtoast</button>
<button type="button" class="mt_5 btn_h_au wm_94 bg_title c_white h_32em" id="plug_alert">Alert Dialog Box</button>
<button type="button" class="mt_5 btn_h_au wm_94 bg_title c_white h_32em" id="plug_confirm">Confirm Dialog Box</button>
</div>
<div class="module press mt_5">
<ul class="list_h_36em">
<li class="rel bg_white touchstart">
<dl class="rel h_in list_h_36em wm_94">
<dt class="fl">姓名</dt>
<dd class="fr rel w_70 mr_7">
<input class="fr bg_white c_gray_777" id="plug_prompt_input" type="button" value="" readonly />
</dd>
<dd class="abs top_0 right_0">
<i class="fr icon-ln_qianjin_b text_16em c_gray_777"></i>
</dd>
</dl>
</li>
</ul>
</div>
<div id="plug_prompt_textarea_view" class="module list press mt_5">
<h3 class="wp_94 bg_white line_h_36em text_bold bor_bottom_dashed bor_gray_ddd">提问内容</h3>
<ul class="wp_94 bg_white list_h_36em">
</ul>
<button type="button" class="btn_h_au wm_94 bg_title c_white h_32em mt_5 mb_5" id="plug_prompt_textarea">继续提问</button>
</div>
<!----------Andrew_Radio&Andrew_Checkbox&Andrew_Switch---------->
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">复选展示</h3>
<ul class="list_h_36em">
<li class="bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="h_in">
<dt class="fl ml_3 h_in">
<input type="checkbox" name="checkbox1" class="plug_Checkbox" />
</dt>
<dd class="fl h_in ml_05em">选项1</dd>
</dl>
</li>
<li class="bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="h_in">
<dt class="fl ml_3 h_in">
<input type="checkbox" name="checkbox2" class="plug_Checkbox" checked />
</dt>
<dd class="fl h_in ml_05em">选项2</dd>
</dl>
</li>
<li class="bg_white bor_bottom bor_gray_ddd">
<dl class="h_in">
<dt class="fl ml_3 h_in">
<input type="checkbox" name="checkbox3" class="plug_Checkbox" disabled />
</dt>
<dd class="fl h_in ml_05em">选项3</dd>
</dl>
</li>
</ul>
</div>
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">单选展示</h3>
<ul class="list_h_36em">
<li class="bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="h_in">
<dt class="fl ovh ml_3 h_in">选项1</dt>
<dd class="fr mr_3 h_in text_14em">
<input type="radio" name="radio" value="1" class="plug_Radio" checked />
</dd>
</dl>
</li>
<li class="bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="h_in">
<dt class="fl ovh ml_3 h_in">选项2</dt>
<dd class="fr mr_3 h_in text_14em">
<input type="radio" name="radio" value="2" class="plug_Radio" />
</dd>
</dl>
</li>
</ul>
</div>
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">开关按钮</h3>
<ul class="list_h_36em">
<li class="bor_bottom bor_gray_ddd bg_white">
<dl class="h_in">
<dt class="fl ovh ml_3 h_in">选项1</dt>
<dd class="fr mr_3 h_in">
<input type="checkbox" name="switch1" class="plug_Switch" checked />
</dd>
</dl>
</li>
<li class="bor_bottom bor_gray_ddd bg_white">
<dl class="h_in">
<dt class="fl ovh ml_3 h_in">选项2</dt>
<dd class="fr mr_3 h_in">
<input type="checkbox" name="switch2" class="plug_Switch" />
</dd>
</dl>
</li>
<li class="bor_bottom bor_gray_ddd bg_white">
<dl class="h_in">
<dt class="fl ovh ml_3 h_in">选项3</dt>
<dd class="fr mr_3 h_in">
<input type="checkbox" name="switch3" class="plug_Switch" checked disabled />
</dd>
</dl>
</li>
<li class="bor_bottom bor_gray_ddd bg_white">
<dl class="h_in">
<dt class="fl ovh ml_3 h_in">选项4</dt>
<dd class="fr mr_3 h_in">
<input type="checkbox" name="switch4" class="plug_Switch" disabled />
</dd>
</dl>
</li>
</ul>
</div>
<!----------Andrew_ChooseList---------->
<div class="module press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em">品牌选择</h3>
<ul class="list_h_36em">
<li class="bor_top bor_gray_ddd bg_white">
<dl class="ovh list_h_36em">
<dt class="fl ovh ml_3 mr_03em">单选:</dt>
<dd class="fl ovh w_80">
<ul class="plug_choose mt_05em c_gray_777">
<li class="fl pl_3 pr_3 mr_05em border bg_white bor_rad_03em bor_gray_ddd line_h_24em pointer" data-checked="true">戴尔</li>
<li class="fl pl_3 pr_3 mr_05em border bg_white bor_rad_03em bor_gray_ddd line_h_24em pointer">三星</li>
<li class="fl pl_3 pr_3 mr_05em border bg_white bor_rad_03em bor_gray_ddd line_h_24em pointer">惠普</li>
<li class="fl pl_3 pr_3 mr_05em border bg_white bor_rad_03em bor_gray_ddd line_h_24em pointer">微软</li>
</ul>
</dd>
</dl>
</li>
<li class="bor_top bor_gray_ddd bg_white">
<dl class="ovh list_h_36em">
<dt class="fl ovh ml_3 mr_03em">多选:</dt>
<dd class="fl ovh w_80">
<ul class="plug_choose mt_05em c_gray_777" data-multiple="multiple">
<li class="fl pl_3 pr_3 mr_05em border bg_white bor_rad_03em bor_gray_ddd line_h_24em pointer" data-checked="true">东芝</li>
<li class="fl pl_3 pr_3 mr_05em border bg_white bor_rad_03em bor_gray_ddd line_h_24em pointer" data-checked="true">松下</li>
<li class="fl pl_3 pr_3 mr_05em border bg_white bor_rad_03em bor_gray_ddd line_h_24em pointer">苹果</li>
<li class="fl pl_3 pr_3 mr_05em border bg_white bor_rad_03em bor_gray_ddd line_h_24em pointer">联想</li>
</ul>
</dd>
</dl>
</li>
</ul>
</div>
<!----------Andrew_TouchDelete---------->
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">滑动删除</h3>
<ul class="plug_touchdel bg_white ovh">
<li class="h_42em rel ovh bor_bottom bor_gray_ddd bg_white touchstart">
<article class="ml_3">
<h3 class="mt_05em c_gray_333">1.这里是文章的标题</h3>
<p class="line_h_18em c_gray_777">当前显示的是列表展示内容</p>
</article>
</li>
<li class="h_42em rel ovh bor_bottom bor_gray_ddd bg_white touchstart">
<article class="ml_3">
<h3 class="mt_05em c_gray_333">2.这里是文章的标题</h3>
<p class="line_h_18em c_gray_777">当前显示的是列表展示内容</p>
</article>
</li>
<li class="h_42em rel ovh bor_bottom bor_gray_ddd bg_white touchstart">
<article class="ml_3">
<h3 class="mt_05em c_gray_333">3.这里是文章的标题</h3>
<p class="line_h_18em c_gray_777">当前显示的是列表展示内容</p>
</article>
</li>
<li class="h_42em rel ovh bor_bottom bor_gray_ddd bg_white touchstart">
<article class="ml_3">
<h3 class="mt_05em c_gray_333">4.这里是文章的标题</h3>
<p class="line_h_18em c_gray_777">当前显示的是列表展示内容</p>
</article>
</li>
</ul>
</div>
<!----------Andrew_ChangeIcon---------->
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">排序和筛选</h3>
<div class="plug_filter rel ovh bg_white wp_94 h_32em bor_bottom bor_gray_ddd">
<ul class="length4 list_h_32em h_in">
<li class="fl text_al_c touchstart plug_sort_btn1">
<strong class="text_al_t c_gray_777">智能排序</strong>
</li>
<li class="fl text_al_c touchstart plug_sort_btn2">
<strong class="text_al_t c_gray_777">销量</strong>
<button type="button" class="line_h_in text_al_s text_al_c c_gray_777">
<i class="abs minus_mt_05em icon-px_zhengxu"></i>
<i class="icon-px_daoxu"></i>
</button>
</li>
<li class="fl text_al_c touchstart plug_sort_btn3">
<strong class="text_al_t c_gray_777">价格</strong>
<button type="button" class="line_h_in text_al_s text_al_c c_gray_777">
<i class="abs minus_mt_05em icon-px_zhengxu"></i>
<i class="icon-px_daoxu"></i>
</button>
</li>
<li class="fl text_al_c touchstart plug_sort_btn4">
<strong class="text_al_t c_gray_777">筛选</strong>
<button type="button" class="line_h_in text_al_m text_al_c c_gray_777">
<i class="icon-ln_xiangxia text_12em"></i>
</button>
</li>
</ul>
</div>
</div>
<!----------Andrew_Ratyli---------->
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">星级评分</h3>
<ul class="list_h_36em">
<li class="bor_bottom bor_gray_ddd bg_white">
<dl class="ovh h_in">
<dt class="fl ovh ml_3 mr_03em">可选评价:</dt>
<dd class="fl ovh">
<div class="line_h_in ovh">
<span id="plug_ratyli1" data-rate="1" data-ratemax="5"></span>
</div>
</dd>
</dl>
</li>
<li class="bor_bottom bor_gray_ddd bg_white">
<dl class="ovh h_in">
<dt class="fl ovh ml_3 mr_03em">展示评价:</dt>
<dd class="fl ovh">
<div class="line_h_in ovh">
<span id="plug_ratyli2" data-rate="4" data-ratemax="5"></span>
</div>
</dd>
</dl>
</li>
</ul>
</div>
<!----------Andrew_Progress---------->
<div class="module press mt_5">
<ul class="list_h_36em">
<li class="ovh rel bg_white">
<dl class="ovh h_in">
<dt class="fl ovh ml_3 mr_03em">当前进度:</dt>
<dd class="fl ovh w_70 h_in">
<div class="plug_progress h_2em bg_gray_ddd"></div>
</dd>
</dl>
</li>
</ul>
</div>
<!----------Andrew_NowTime---------->
<!----------Andrew_CountTo---------->
<!----------Andrew_Countdown---------->
<div class="module list press mt_5">
<ul class="list_h_36em">
<li class="bor_bottom bor_gray_ddd bg_white">
<span class="fl ml_3 mr_03em">当前时间:</span>
<em class="plug_nowtime c_gray_777"></em>
</li>
<li class="bor_bottom bor_gray_ddd bg_white touchstart">
<span class="fl ml_3 mr_03em">点击开始:</span>
<em class="plug_count c_title" data-form="0.00" data-to="999.00" data-speed="1500" data-decimals="2"></em>
</li>
<li class="bor_bottom bor_gray_ddd bg_white touchstart">
<span class="fl ml_3 mr_03em">点击倒计时:</span>
<em class="plug_Countdown c_title">10秒</em>
</li>
</ul>
</div>
<!----------Andrew_Favorite---------->
<div class="module bg_white press mt_5">
<ul class="wm_94 list_h_36em length2">
<li class="fl">
<button type="button" class="fl pl_1em pr_1em plug_like c_gray_777 line_h_36em touchstart" data-value="500"></button>
</li>
<li class="fr">
<button type="button" class="fr pl_1em pr_1em plug_collect c_gray_777 line_h_36em touchstart" data-value="0"></button>
</li>
</ul>
</div>
<!----------Andrew_Substring---------->
<div class="module press mt_5">
<ul class="list_h_36em">
<li class="ovh rel bg_white touchstart">
<dl class="rel h_in list_h_36em wm_94">
<dt class="fl">产品价格</dt>
<dd class="fr rel w_70 mr_7">
<span class="fr c_gray_777 ml_05em">元</span>
<input type="number" class="plug_RMBoutput fr bg_white c_gray_777" required value="" pattern="(\d{5}([-]\d{4})?)" />
</dd>
<dd class="abs top_0 right_0">
<i class="fr icon-ln_qianjin_b text_16em c_gray_777"></i>
</dd>
</dl>
</li>
</ul>
</div>
<!----------Andrew_Spinner---------->
<div class="module press mt_5">
<ul class="list_h_36em">
<li class="rel bg_white">
<dl class="h_in">
<dt class="fl ml_3">产品数量</dt>
<dd class="fr w_35 mr_3 h_in">
<input type="number" class="plug_spinner text_al_c c_gray_777 bor_rad_0" value="1" pattern="[0-9]*" />
</dd>
</dl>
</li>
</ul>
</div>
<!----------Andrew_ChangeInput---------->
<div class="module press mt_5">
<ul class="list_h_36em">
<li class="rel bg_white">
<dl class="h_in">
<dt class="fl ml_3">切换城市</dt>
<dd class="fr w_60 mr_3 h_in">
<div class="rel mt_06em h_24em border bor_gray_ddd w_100 bg_gray_f9f">
<input type="text" class="plug_change_text1 fl w_35 h_in text_al_c c_gray_777 bor_rad_0" value="北京市">
<button type="button" class="plug_change_btn fl w_30 h_in bor_left bor_right bor_gray_ddd bg_white icon-ly_qiehuan"></button>
<input type="text" class="plug_change_text2 fl w_35 h_in text_al_c c_gray_777 bor_rad_0" value="上海市">
</div>
</dd>
</dl>
</li>
</ul>
</div>
<!----------Andrew_Form---------->
<!----------Andrew_Validate---------->
<!----------Andrew_GetVerifyCode---------->
<!----------Andrew_intlTelInput---------->
<!----------Andrew_Codeval---------->
<form action="demo.html" method="get">
<div class="module list mt_5 plug_validate">
<ul class="wp_94 press bg_white list_h_36em">
<li class="rel bor_bottom bor_gray_ddd">
<i class="abs left_0 icon-mb_shouji c_title text_16em"></i>
<label class="plug_mobileNum dis_block rel ovh fl ml_8 mr_05em line_h_in bor_right bor_gray_eee touchstart">
<input type="button" class="fl c_gray_777" value="+86" />
<i class="fl icon-ln_qianjin_b text_16em c_gray_777"></i>
</label>
<input type="tel" id="plug_phone" class="fl w_70 plug_Delete c_gray_777" required value="" maxlength="11" placeholder="请输入手机号码" pattern="[0-9]*" />
</li>
<li class="rel bor_bottom bor_gray_ddd">
<i class="abs left_0 icon-im_yanzhengma c_title text_16em"></i>
<input type="text" class="fl ml_8 w_92 c_gray_777" required value="" maxlength="6" placeholder="请输入手机短信验证码" />
<button type="button" id="plug_getVerifyCode" class="press abs bg_white press top_0 right_0 c_title">获取验证码</button>
</li>
<li class="rel bor_bottom bor_gray_ddd">
<i class="abs left_0 icon-mn_dunpai c_title text_16em"></i>
<input type="text" id="plug_codeInput" class="fl ml_8 w_92 c_gray_777" required value="" placeholder="请输入右侧验证码" />
<code id="plug_codeView" class="ovh press abs right_0 bg_white w_20 line_h_2em border bor_gray_ddd touchstart"></code>
</li>
<li class="rel bor_bottom bor_gray_ddd">
<i class="abs left_0 icon-mb_suoding c_title text_16em"></i>
<input type="password" class="fl ml_8 w_92 c_gray_777 plug_PassCheck plug_Password" required value="" maxlength="16" placeholder="请输入新密码" />
</li>
<li class="rel bor_bottom bor_gray_ddd">
<i class="abs left_0 icon-mb_suoding c_title text_16em"></i>
<input type="password" class="fl ml_8 w_92 c_gray_777 plug_PassCheck plug_Password" required value="" maxlength="16" placeholder="请输入确认密码" />
</li>
</ul>
<button type="submit" class="btn_h_3em wm_94 bg_title c_white mt_5 h_32em">提交</button>
</div>
</form>
<!----------Andrew_PortraitImage---------->
<!----------Andrew_Select---------->
<!----------Andrew_Datetime---------->
<div class="module list press mt_5">
<ul class="list_h_36em">
<li class="rel bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="rel h_in list_h_36em wm_94">
<dt class="fl">上传头像</dt>
<dd class="fr rel w_70 mr_7">
<label class="fr rel plug_PortraitImage pointer">
<input type="file" />
<figure class="img_auto ovh wh_24em line_h_24em text_al_c bg_gray_ddd border bor_gray_ddd">
<i class="icon-mn_wo_fill c_white text_18em text_al_t"></i>
</figure>
</label>
</dd>
<dd class="abs top_0 right_0">
<i class="fr icon-ln_qianjin_b text_16em c_gray_777"></i>
</dd>
</dl>
</li>
<li class="rel bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="rel h_in list_h_36em wm_94">
<dt class="fl">选择星期</dt>
<dd class="fr rel w_70 mr_7">
<input type="button" id="plug_trigger1" class="fr bg_white c_gray_777" name="plug_trigger1" readonly value="星期日" placeholder="请选择星期" />
</dd>
<dd class="abs top_0 right_0">
<i class="fr icon-ln_qianjin_b text_16em c_gray_777"></i>
</dd>
</dl>
</li>
<li class="rel bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="rel h_in list_h_36em wm_94">
<dt class="fl">选择地区</dt>
<dd class="fr rel w_70 mr_7">
<input type="button" id="plug_trigger2" class="fr bg_white c_gray_777" name="plug_trigger2" readonly value="" placeholder="请选择地区" />
</dd>
<dd class="abs top_0 right_0">
<i class="fr icon-ln_qianjin_b text_16em c_gray_777"></i>
</dd>
</dl>
</li>
<li class="rel bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="rel h_in list_h_36em wm_94">
<dt class="fl">选择日期</dt>
<dd class="fr rel w_70 mr_7">
<input type="button" id="plug_datetime" class="fr bg_white c_gray_777" readonly value="" placeholder="请选择日期" />
</dd>
<dd class="abs top_0 right_0">
<i class="fr icon-ln_qianjin_b text_16em c_gray_777"></i>
</dd>
</dl>
</li>
<li class="rel bor_bottom bor_gray_ddd bg_white touchstart">
<dl class="rel h_in list_h_36em wm_94">
<dt class="fl">多功能日期</dt>
<dd class="fr rel w_70 mr_7">
<input type="button" id="plug_multidate" class="fr bg_white c_gray_777" readonly value="" placeholder="请选择多功能日期" />
</dd>
<dd class="abs top_0 right_0">
<i class="fr icon-ln_qianjin_b text_16em c_gray_777"></i>
</dd>
</dl>
</li>
</ul>
</div>
<!----------Andrew_PreviewImage---------->
<div class="rel press bg_white mt_5 clear">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">上传凭证</h3>
<ul class="w_94 center length4 pt_5">
<li class="rel fl mb_5">
<label class="plug_previewImage bg_white dis_block text_al_c ovh rel w_80 h_5em line_h_5em border bor_gray_ddd">
<i class="icon-ln_jia_a text_24em line_h_16em text_bold c_gray_ddd text_al_m"></i>
<input multiple type="file" />
</label>
</li>
<li class="rel fl mb_5">
<button type="button" class="plug_DelImage bg_white dis_block text_al_c ovh rel w_80 h_5em line_h_5em border bor_gray_ddd">
<i class="icon-ln_jian_a text_24em line_h_16em text_bold c_gray_ddd text_al_m"></i>
</button>
</li>
</ul>
</div>
<!----------Andrew_SnInput---------->
<div class="module press mt_5 ovh bg_white">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">支付密码</h3>
<fieldset class="plug_sn_input pt_5 pb_5 ml_3 ovh">
<input type="password" multiple class="wh_3em mr_05em bg_gray_f9f bor_gray_ddd c_gray_777 border bor_rad_0" />
<input type="password" multiple class="wh_3em mr_05em bg_gray_f9f bor_gray_ddd c_gray_777 border bor_rad_0" />
<input type="password" multiple class="wh_3em mr_05em bg_gray_f9f bor_gray_ddd c_gray_777 border bor_rad_0" />
<input type="password" multiple class="wh_3em mr_05em bg_gray_f9f bor_gray_ddd c_gray_777 border bor_rad_0" />
<input type="password" multiple class="wh_3em mr_05em bg_gray_f9f bor_gray_ddd c_gray_777 border bor_rad_0" />
<input type="password" multiple class="wh_3em mr_05em bg_gray_f9f bor_gray_ddd c_gray_777 border bor_rad_0" />
</fieldset>
</div>
<!----------Andrew_Textarea---------->
<form action="#" method="get" onsubmit="return false;">
<div class="module mt_5 plug_validate">
<dl class="ovh bg_white">
<dt class="press c_title bg_white pl_3 h_3em line_h_3em">感谢您为我提出宝贵意见</dt>
<dd class="rel minus_mt_05em">
<textarea class="plug_textarea ml_3 mr_3 w_94 h_12_em c_gray_777" placeholder="请输入遇到的问题或者意见..." required></textarea>
</dd>
</dl>
<button type="submit" class="btn_h_3em wm_94 bg_title c_white mt_5 h_32em">提交</button>
</div>
</form>
<!----------Andrew_lightSlider---------->
<div class="module bg_white press mt_5 pb_3">
<h3 class="bg_white c_title pl_3 mb_1em line_h_36em bor_bottom bor_gray_ddd">图片滑动展示</h3>
<div class="wm_94 ovh rel">
<ul id="plug_photo_slider">
<li class="h_8em">
<figure class="bg_gray_f5f border bor_gray_ddd h_in img_auto">
<img src="./img/tibet-1.jpg" />
</figure>
</li>
<li class="h_8em">
<figure class="bg_gray_f5f border bor_gray_ddd h_in img_auto">
<img src="./img/tibet-2.jpg" />
</figure>
</li>
<li class="h_8em">
<figure class="bg_gray_f5f border bor_gray_ddd h_in img_auto">
<img src="./img/tibet-3.jpg" />
</figure>
</li>
<li class="h_8em">
<figure class="bg_gray_f5f border bor_gray_ddd h_in img_auto">
<img src="./img/tibet-4.jpg" />
</figure>
</li>
<li class="h_8em">
<figure class="bg_gray_f5f border bor_gray_ddd h_in img_auto">
<img src="./img/tibet-5.jpg" />
</figure>
</li>
<li class="h_8em">
<figure class="bg_gray_f5f border bor_gray_ddd h_in img_auto">
<img src="./img/tibet-6.jpg" />
</figure>
</li>
</ul>
</div>
</div>
<!----------Andrew_DropUpDown---------->
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">手风琴效果</h3>
<ul class="plug_dropbutton">
<li class="bg_white ovh bor_bottom bor_gray_ddd">
<dl class="rel pl_3 ovh touchstart list_h_36em">
<dt class="fl ovh">
点击展开查看更多的内容1
</dt>
<dd class="abs wm_94 left_0 c_gray_999 text_al_r">
<i class="text_14em icon-ln_jiantouxia"></i>
</dd>
</dl>
<article class="ma_3 c_gray_777 line_h_18em">
欢迎使用AKjs移动端jQuery插件。<br>
当前内容是点击查看更多后的详情信息。
</article>
</li>
<li class="bg_white ovh bor_bottom bor_gray_ddd">
<dl class="rel pl_3 ovh touchstart list_h_36em">
<dt class="fl ovh">
点击展开查看更多的内容2
</dt>
<dd class="abs wm_94 left_0 c_gray_999 text_al_r">
<i class="text_14em icon-ln_jiantouxia"></i>
</dd>
</dl>
<article class="ma_3 c_gray_777 line_h_18em">
欢迎使用AKjs移动端jQuery插件。<br>
当前内容是点击查看更多后的详情信息。
</article>
</li>
<li class="bg_white ovh bor_bottom bor_gray_ddd">
<dl class="rel pl_3 ovh touchstart list_h_36em">
<dt class="fl ovh">
点击展开查看更多的内容3
</dt>
<dd class="abs wm_94 left_0 c_gray_999 text_al_r">
<i class="text_14em icon-ln_jiantouxia"></i>
</dd>
</dl>
<article class="ma_3 c_gray_777 line_h_18em">
欢迎使用AKjs移动端jQuery插件。<br>
当前内容是点击查看更多后的详情信息。
</article>
</li>
</ul>
</div>
<!----------Andrew_AllChecked---------->
<div class="module list press mt_5">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">全选功能</h3>
<ul class="plug_allchk">
<li class="bg_white">
<dl class="rel line_h_36em ovh touchstart bor_bottom_dashed bor_gray_ddd">
<dt class="fl ml_3 h_in">
<input type="checkbox" name="checkbox2-2" class="plug_Checkbox" multiple value="0202" />
</dt>
<dd class="fl h_in ml_05em">全选/反选</dd>
</dl>
<ul class="ml_1em list_h_36em">
<li class="bg_white ovh touchstart bor_bottom bor_gray_ddd">
<dl class="rel h_in ovh">
<dt class="fl ml_3 h_in">
<input type="checkbox" name="checkbox2-2-1" class="plug_Checkbox" multiple value="020201" />
</dt>
<dd class="fl h_in ml_05em c_gray_777">笔记本电脑</dd>
<dd class="fr mr_3 c_gray_999">¥<span class="c_in">4999.00</span></dd>
</dl>
</li>
<li class="bg_white ovh touchstart bor_bottom bor_gray_ddd">
<dl class="rel h_in ovh">
<dt class="fl ml_3 h_in">
<input type="checkbox" name="checkbox2-2-2" class="plug_Checkbox" multiple value="020202" />
</dt>
<dd class="fl h_in ml_05em c_gray_777">台式机电脑</dd>
<dd class="fr mr_3 c_gray_999">¥<span class="c_in">3999.00</span></dd>
</dl>
</li>
<li class="bg_white ovh touchstart bor_bottom bor_gray_ddd">
<dl class="rel h_in ovh">
<dt class="fl ml_3 h_in">
<input type="checkbox" name="checkbox2-2-2" class="plug_Checkbox" multiple value="020202" />
</dt>
<dd class="fl h_in ml_05em c_gray_777">苹果手机</dd>
<dd class="fr mr_3 c_gray_999">¥<span class="c_in">5999.00</span></dd>
</dl>
</li>
</ul>
</li>
</ul>
</div>
<!----------Andrew_Viewer---------->
<!----------Andrew_lazyload---------->
<div class="module press mt_5 bg_white">
<h3 class="bg_white c_title pl_3 line_h_36em bor_bottom bor_gray_ddd">图片放大展示</h3>
<ul class="plug_viewer lazyload ml_3 mt_1em length2">
<li class="fl ovh h_8em mb_1em">
<figure class="w_94 border bor_gray_ddd img_auto h_in">
<img data-original="./img/tibet-1.jpg" src="./img/thumbnails/tibet-1.jpg" alt="图片1" />
</figure>
</li>
<li class="fl ovh h_8em mb_1em">
<figure class="w_94 border bor_gray_ddd img_auto h_in">
<img data-original="./img/tibet-2.jpg" src="./img/thumbnails/tibet-2.jpg" alt="图片2" />
</figure>
</li>
<li class="fl ovh h_8em mb_1em">
<figure class="w_94 border bor_gray_ddd img_auto h_in">
<img data-original="./img/tibet-3.jpg" src="./img/thumbnails/tibet-3.jpg" alt="图片3" />
</figure>
</li>
<li class="fl ovh h_8em mb_1em">
<figure class="w_94 border bor_gray_ddd img_auto h_in">
<img data-original="./img/tibet-4.jpg" src="./img/thumbnails/tibet-4.jpg" alt="图片4" />
</figure>
</li>
<li class="fl ovh h_8em mb_1em">
<figure class="w_94 border bor_gray_ddd img_auto h_in">
<img data-original="./img/tibet-5.jpg" src="./img/thumbnails/tibet-5.jpg" alt="图片5" />
</figure>
</li>
<li class="fl ovh h_8em mb_1em">
<figure class="w_94 border bor_gray_ddd img_auto h_in">
<img data-original="./img/tibet-6.jpg" src="./img/thumbnails/tibet-6.jpg" alt="图片6" />
</figure>
</li>
</ul>
</div>
<!----------Andrew_PopupWin Start---------->
<div id="plug_MenuWin" class="dis_none bg_white pa_3 w_100 mt_32em"> <!--顶部位置显示的弹窗-->
<ul class="wp_94 c_gray_777">
<li class="fl h_3em line_h_3em mr_1em">功能A</li>
<li class="fl h_3em line_h_3em mr_1em">功能B</li>
<li class="fl h_3em line_h_3em mr_1em">功能C</li>
<li class="fl h_3em line_h_3em mr_1em">功能D</li>
<li class="fl h_3em line_h_3em mr_1em">功能E</li>
<li class="fl h_3em line_h_3em mr_1em">功能F</li>
<li class="fl h_3em line_h_3em mr_1em">功能G</li>
<li class="fl h_3em line_h_3em mr_1em">功能H</li>
</ul>
</div>
<div id="plug_PopupWin" class="dis_none bg_white pa_5 w_85"> <!--中间位置显示的弹窗-->
<button type="button" class="plug_closeIn dis_block wh_12em mt_01em mr_01em abs bg_white top_0 right_0 c_gray_333 text_18em icon-ln_quxiao"></button>
<h2 class="text_bold press text_12em">弹窗标题</h2>
<ul class="bor_top_dashed bor_gray_ddd mt_05em pt_05em c_gray_777">
<li class="h_3em line_h_3em">弹窗内容显示中1</li>
<li class="h_3em line_h_3em">弹窗内容显示中2</li>
<li class="h_3em line_h_3em">弹窗内容显示中3</li>
</ul>
</div>
<div id="plug_filterWin" class="dis_none w_100 ovh"> <!--对应位置显示的弹窗-->
<ul class="abs ovh wp_94 bg_white bor_top bor_gray_ddd pt_3 pb_3 zindex_2 c_gray_777">
<li class="fl h_3em line_h_3em mr_1em">筛选A</li>
<li class="fl h_3em line_h_3em mr_1em">筛选B</li>
<li class="fl h_3em line_h_3em mr_1em">筛选C</li>
<li class="fl h_3em line_h_3em mr_1em">筛选D</li>
<li class="fl h_3em line_h_3em mr_1em">筛选E</li>
<li class="fl h_3em line_h_3em mr_1em">筛选F</li>
<li class="fl h_3em line_h_3em mr_1em">筛选G</li>
<li class="fl h_3em line_h_3em mr_1em">筛选H</li>
</ul>
</div>
<!----------Andrew_PopupWin End---------->
</main>
<footer class="press bg_gray_f9f">
<menu class="bor_gray_ddd bor_top">
<button type="button" class="fl">
<i class="text_18em c_gray_777"></i>
<em class="text_08em c_gray_777">功能</em>
</button>
<button type="button" class="fl">
<i class="text_18em c_gray_777"></i>
<em class="text_08em c_gray_777">聊天</em>
</button>
<button type="button" class="fl">
<i class="text_18em c_gray_777"></i>
<em class="text_08em c_gray_777">时间轴</em>
</button>
<button type="button" class="fl">
<i class="text_18em c_gray_777"></i>
<em class="text_08em c_gray_777">布局</em>
</button>
<button type="button" class="fl">
<i class="text_18em c_gray_777"></i>
<em class="text_08em c_gray_777">加载</em>
</button>
</menu>
</footer>
</body>
<script type="text/javascript">
$("footer button").click(function(){
alert("当前访问的界面没开启路由模式,所以要预览页面切换效果,请访问index.html!");
});
//引入Andrew插件的区域
/*-----------------------------------------------Andrew_Config (全局设置)使用方法-------------------------------------------*/
$(function () {
Andrew_Config({ //环境配置管理
MaskStyle: ["style3","opacity07"], //1.所有弹窗背景图案选择(样式style1~6)、2.遮挡层背景的透明度(opacity01~09)
touchstart: true, //是否开启移动端active效果, 建议开启 (元素的class里加touchstart即可用)(使用 true,不使用 false)
ButtonLink: true, //通过元素中加data-href属性的方式跳转界面, 建议开启路由功能后使用。(使用button超链接 true,不使用button超链接 false)
WechatHeader: false, //是否通过微信浏览器访问时自动隐藏应用的头部区域, 可以通用建议开启 (使用隐藏 true, 不使用隐藏 false)
Topdblclick: true, //是否开启点击应用的头部让页面回头顶部 (开启 true, 停用 false)
fixedBar: true, //输入信息时应用的头部绝对固定在屏幕最上方,底部有输入框时不被虚拟键盘遮挡 (不通过微信访问才生效,开启WechatHeader的参数时请关闭该参数)
Orientation: true, //是否开启应用只允许竖屏浏览 (使用 true, 不使用 false)
Prompt: "为了更好的视觉体验,请在竖屏下进行操作。" //应用横屏是提示文字 (必须开启Orientation的选项才能生效)
});
});
/*-----------------------------------------------Andrew_Menu 使用方法-------------------------------------------*/
$(function() {
Andrew_Menu({ //底部菜单的图标以及文字样式变化设置
active_color: "c_title", //被选中的文字和图标的颜色
menu_icon: new Array( //每个菜单的默认显示图标设置 (为了正常的显示布局最多设置5个)
"icon-mn_gongneng", //第1个按钮的图标
"icon-mn_hudong", //第2个按钮的图标
"icon-mn_huodong", //第3个按钮的图标
"icon-mn_kuangjia", //第4个按钮的图标
"icon-mn_kongjian" //第5个按钮的图标
),
menu_icon_active: new Array( //每个菜单的被选中后的图标设置 (为了正常的显示布局最多设置5个)
"icon-mn_gongneng_fill", //第1个按钮的图标
"icon-mn_hudong_fill", //第2个按钮的图标
"icon-mn_huodong_fill", //第3个按钮的图标
"icon-mn_kuangjia_fill", //第4个按钮的图标
"icon-mn_kongjian_fill" //第5个按钮的图标
)
});
});
/*-----------------------------------------------Andrew_Slider 使用方法-------------------------------------------*/
$(function() {
$(".plug_slider").Andrew_Slider({
start: 1, //默认显示的图片排号
speed: 500, //图片切换的速度
interval: 5000, //图片切换间隔毫秒
autoPlay: true, //幻灯片是否自动播放(true,false)
dotShow: true, //是否显示幻灯片位置按钮(true,false)
arrShow: false, //是否显示左右切换按钮(true,false)
dotClass: "fl wh_08em bg_gray_333 border bor_white mr_05em bor_rad_50 pointer", //底部图片位置的样式设置
arrClass:"wh_24em c_white bg_black05 bor_rad_50 pointer", //左右切换按钮的样式设置
ActiveClass: "bg_title", //底部图片位置的当前样式
afterSlider: function(num) { //回调获取当前的数
//console.log(num);
}
});
});
/*-----------------------------------------------Andrew_ScrollFixed 使用方法-------------------------------------------*/
$(function () {
$(".plug_tabs nav").Andrew_ScrollFixed({
ScrollFixed: true, //是否开启指定的元素区域固定在屏幕的上方位置 (开启 true, 关闭 false)
zPosition: "4", //浮动元素的z-index数值
animated: "slideInDown ani_05s", //滚动后的显示的动画效果 (css动画库:andrew.animate.css)
top: 0 //屏幕上方和滑动后的元素固定的上下间距
});
});
/*-----------------------------------------------Andrew_Tabs 使用方法-------------------------------------------*/
$(function () {
$(".plug_tabs").Andrew_Tabs({
curDisplay: 1, //当前显示哪张
autoPlay: false, //自动播放 (true/false)
playDelay: 2000, //自动播放延迟时间 (必选 autoPlay: true)
boxheight: false, //切换内容区域的高度设置px;建议vertical方式时使用 (不使用高度:false)
navlength: 4, //切换导航的数量设置(文字屏幕对齐)
fullclass: "bor_bottom2 bor_title c_title minus_mt_1px", //被选中状态的class
emptyclass: "bor_bottom bor_gray_ddd", //未选中状态的class
mouse: "click", //鼠标事件 (click/hover)
touchmode : true, //是否开启触屏滑动切换功能 (true/false)
changeMethod: "horizontal", //切换方式 (default/vertical/horizontal/opacity)
callback: function(ele) { //通过回调获取当前显示的元素
//console.log(ele);
}
});
});
/*-----------------------------------------------Andrew_Ajax 使用方法-------------------------------------------*/
$(function () {
$("#plug_tab1").each(function(){ //默认显示Ajax请求后的页面
Andrew_Ajax({
to: "#plug_ajax1", //加载内容的区域(定义ID),如果只加载数据不加载HTML页面,把这个to参数设为空。
type: "POST", //GET或POST
url: "./ajax/tab_test1.html", //需要加载的URL
data:{}, //传入参数
async: false, //异步方式:true,同步方式:false
success:function (flag) { //ajax请求加载成功后的回调 (状态:flag=true)
console.log(flag);
ak_webToast("请求加载数据成功!","middle",2000);
},
error:function (flag) { //ajax请求加载失败后的回调 (状态:flag=false)
console.log(flag);
ak_webToast("请求加载数据失败!","middle",2000);
}
});
});
});
$(function () {
$("#plug_tab1").click(function(){ //通过点击事件后请求加载Ajax页面
Andrew_Ajax({
to: "#plug_ajax1", //加载内容的区域(定义ID),如果只加载数据不加载HTML页面,把这个to参数设为空。
type: "POST", //GET或POST
url: "./ajax/tab_test1.html", //需要加载的URL
data:{}, //传入参数
async: false, //异步方式:true,同步方式:false
success:function (flag) { //ajax请求加载成功后的回调 (状态:flag=true)
console.log(flag);
ak_webToast("请求加载数据成功!","middle",2000);
},
error:function (flag) { //ajax请求加载失败后的回调 (状态:flag=false)
console.log(flag);
ak_webToast("请求加载数据失败!","middle",2000);
}
});
});
});
$(function () {
$("#plug_tab2").click(function(){ //通过点击事件后请求加载Ajax页面
Andrew_Ajax({
to: "#plug_ajax2", //加载内容的区域(定义ID),如果只加载数据不加载HTML页面,把这个to参数设为空。
type: "POST", //GET或POST
url: "./ajax/tab_test2.html", //需要加载的URL
data:{}, //传入参数
async: false, //异步方式:true,同步方式:false
success:function (flag) { //ajax请求加载成功后的回调 (状态:flag=true)
console.log(flag);
ak_webToast("请求加载数据成功!","middle",2000);
},
error:function (flag) { //ajax请求加载失败后的回调 (状态:flag=false)
console.log(flag);
ak_webToast("请求加载数据失败!","middle",2000);
}
});
});
});
$(function () {
$("#plug_tab3").click(function(){ //通过点击事件后请求加载Ajax页面
Andrew_Ajax({
to: "#plug_ajax3", //加载内容的区域(定义ID),如果只加载数据不加载HTML页面,把这个to参数设为空。
type: "POST", //GET或POST
url: "./ajax/tab_test3.html", //需要加载的URL
data:{}, //传入参数
async: false, //异步方式:true,同步方式:false
success:function (flag) { //ajax请求加载成功后的回调 (状态:flag=true)
console.log(flag);
ak_webToast("请求加载数据成功!","middle",2000);
},
error:function (flag) { //ajax请求加载失败后的回调 (状态:flag=false)
console.log(flag);
ak_webToast("请求加载数据失败!","middle",2000);
}
});
});