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
| //跳转到首页
| function JumpHomePage(){
| setCookie("pages","0");
| window.location.href="index.html";
| }
|
| //跳转到机房层
| function JumpFirstPage(){
| setCookie("pages","0");
| window.location.href="machineroomM.html";
| }
|
| //跳转到系统层
| function JumpSecondPage(){
| setCookie("pages","1");
| window.location.href="machineroomM.html";
| }
| function JumpcityPage(){
| setCookie("pages","3");
| window.location.href="selectcity.html";
| }
|
| //跳转到电池组层
| function JumpThirdPage(){
| setCookie("pages","2");
| window.location.href="machineroomM.html";
| }
| function JumpElegroupListPage(){
| setCookie("pages","4");
| window.location.href="elegroup-list.html";
| }
|
|