html 窗口管理
阿新 • • 發佈:2017-10-12
hist .com sessions .net sre style top navi article
頁面跳轉與傳值
/** * 頁面跳轉與傳值 * http://www.cnblogs.com/cyy-13/p/5775344.html * http://www.jb51.net/article/25403.htm */ function testPageJump(){ debugger; // cookie傳值 document.cookie = "AAA=aaa&BBB=bbb"; // localStorage傳值 localStorage.CCC = "ccc"; localStorage.setItem("AAA","aaa");// sessionStorage傳值 sessionStorage.setItem("BBB","bbb"); // 參數傳值 // 在當前頁面打開 window.location.href = "PageB.html?AAA=aaa&BBB=bbb"; // 在當前頁面打開 self.location = "PageB.html"; // 在當前頁面打開 top.location = "PageB.html"; // 打開新頁面 window.open("PageB.html?AAA=aaa&BBB=bbb");// ie? window.navigate("PageB.html"); window.navigate("http://www.baidu.com"); // 返回 window.history.back(-1); } /** * B頁面 */ console.log(window.location.href); console.log(document.cookie); console.log(localStorage.CCC); console.log(localStorage.getItem("AAA")); console.log(sessionStorage.getItem("BBB"));
參考:
Window open() 方法
JS頁面跳轉大全
js頁面跳轉常用的幾種方式
html 窗口管理