CJJ
2018-11-21 b55e1b0126ac5cfc48ae9aacb5a7cd9235e26ebf
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";
}