CJJ
2018-12-01 72f7385f7156f1962f227c465d40e4b673326924
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
//跳转到首页
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";
}