码迷,mamicode.com
首页 > Web开发 > 详细

html 窗口管理

时间:2017-10-12 00:56:12      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:session   gate   ora   传值   http   html   test   open   htm   

页面跳转与传值
/**
 * 页面跳转与传值
 *     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 窗口管理

标签:session   gate   ora   传值   http   html   test   open   htm   

原文地址:http://www.cnblogs.com/zhen-android/p/7653582.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!