|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+$(function(){
|
|
|
2
|
+ $('.ruzhou').hover(function(){
|
|
|
3
|
+ $('.ruzhou1').show();
|
|
|
4
|
+ },function(){
|
|
|
5
|
+ $('.ruzhou1').hide();
|
|
|
6
|
+ })
|
|
|
7
|
+ $('.jiaxian').hover(function(){
|
|
|
8
|
+ $('.jiaxian1').show();
|
|
|
9
|
+ },function(){
|
|
|
10
|
+ $('.jiaxian1').hide();
|
|
|
11
|
+ })
|
|
|
12
|
+ $('.shilongqu').hover(function(){
|
|
|
13
|
+ $('.shilongqu1').show();
|
|
|
14
|
+ },function(){
|
|
|
15
|
+ $('.shilongqu1').hide();
|
|
|
16
|
+ })
|
|
|
17
|
+ $('.lushan').hover(function(){
|
|
|
18
|
+ $('.lushan1').show();
|
|
|
19
|
+ },function(){
|
|
|
20
|
+ $('.lushan1').hide();
|
|
|
21
|
+ })
|
|
|
22
|
+ $('.pingdingshan').hover(function(){
|
|
|
23
|
+ $('.pingdingshan1').show();
|
|
|
24
|
+ },function(){
|
|
|
25
|
+ $('.pingdingshan1').hide();
|
|
|
26
|
+ })
|
|
|
27
|
+ $('.baofeng').hover(function(){
|
|
|
28
|
+ $('.baofeng1').show();
|
|
|
29
|
+ },function(){
|
|
|
30
|
+ $('.baofeng1').hide();
|
|
|
31
|
+ })
|
|
|
32
|
+ $('.yexian').hover(function(){
|
|
|
33
|
+ $('.yexian1').show();
|
|
|
34
|
+ },function(){
|
|
|
35
|
+ $('.yexian1').hide();
|
|
|
36
|
+ })
|
|
|
37
|
+ $('.wugang').hover(function(){
|
|
|
38
|
+ $('.wugang1').show();
|
|
|
39
|
+ },function(){
|
|
|
40
|
+ $('.wugang1').hide();
|
|
|
41
|
+ })
|
|
|
42
|
+ $('.ruzhou').click(function(){
|
|
|
43
|
+ $('#allJARate').text('90.9%')
|
|
|
44
|
+ $('#allMYRate').text('90.9%')
|
|
|
45
|
+ $('#allPJRate').text('2645')
|
|
|
46
|
+ $('#allSLCount').text('90000')
|
|
|
47
|
+ $('#allJACount').text('85000')
|
|
|
48
|
+ })
|
|
|
49
|
+ $('.jiaxian').click(function(){
|
|
|
50
|
+ $('#allJARate').text('80.9%')
|
|
|
51
|
+ $('#allMYRate').text('80.8%')
|
|
|
52
|
+ $('#allPJRate').text('2645')
|
|
|
53
|
+ $('#allSLCount').text('80000')
|
|
|
54
|
+ $('#allJACount').text('75000')
|
|
|
55
|
+ })
|
|
|
56
|
+ $('.shilongqu').click(function(){
|
|
|
57
|
+ $('#allJARate').text('70.8%')
|
|
|
58
|
+ $('#allMYRate').text('70.9%')
|
|
|
59
|
+ $('#allPJRate').text('2645')
|
|
|
60
|
+ $('#allSLCount').text('80000')
|
|
|
61
|
+ $('#allJACount').text('75000')
|
|
|
62
|
+ })
|
|
|
63
|
+ $('.lushan').click(function(){
|
|
|
64
|
+ $('#allJARate').text('88.1%')
|
|
|
65
|
+ $('#allMYRate').text('85.5%')
|
|
|
66
|
+ $('#allPJRate').text('2645')
|
|
|
67
|
+ $('#allSLCount').text('95000')
|
|
|
68
|
+ $('#allJACount').text('87000')
|
|
|
69
|
+ })
|
|
|
70
|
+ $('.pingdingshan').click(function(){
|
|
|
71
|
+ $('#allJARate').text('89.6%')
|
|
|
72
|
+ $('#allMYRate').text('86.9%')
|
|
|
73
|
+ $('#allPJRate').text('2645')
|
|
|
74
|
+ $('#allSLCount').text('66000')
|
|
|
75
|
+ $('#allJACount').text('59000')
|
|
|
76
|
+ })
|
|
|
77
|
+ $('.baofeng').click(function(){
|
|
|
78
|
+ $('#allJARate').text('87.9%')
|
|
|
79
|
+ $('#allMYRate').text('84.5%')
|
|
|
80
|
+ $('#allPJRate').text('2645')
|
|
|
81
|
+ $('#allSLCount').text('78000')
|
|
|
82
|
+ $('#allJACount').text('73000')
|
|
|
83
|
+ })
|
|
|
84
|
+ $('.yexian').click(function(){
|
|
|
85
|
+ $('#allJARate').text('97.5%')
|
|
|
86
|
+ $('#allMYRate').text('97.5%')
|
|
|
87
|
+ $('#allPJRate').text('2645')
|
|
|
88
|
+ $('#allSLCount').text('89000')
|
|
|
89
|
+ $('#allJACount').text('86000')
|
|
|
90
|
+ })
|
|
|
91
|
+ $('.wugang').click(function(){
|
|
|
92
|
+ $('#allJARate').text('99%')
|
|
|
93
|
+ $('#allMYRate').text('99%')
|
|
|
94
|
+ $('#allPJRate').text('2645')
|
|
|
95
|
+ $('#allSLCount').text('85000')
|
|
|
96
|
+ $('#allJACount').text('79000')
|
|
|
97
|
+ })
|
|
|
98
|
+
|
|
|
99
|
+})
|