JS实现把一个页面层数据传递到另一个页面的两种方式
程序员文章站
2022-06-10 23:34:13
由于之前面试,被问到过此问题,所以今天特意整理了一下。由于自己技术水平有限,若存在错误,欢迎提出批评。
本博客整理了两种方式从一个页面层向另一个页面层传递参数。
一....
由于之前面试,被问到过此问题,所以今天特意整理了一下。由于自己技术水平有限,若存在错误,欢迎提出批评。
本博客整理了两种方式从一个页面层向另一个页面层传递参数。
一. 通过cookie方式
1. 传递cookie页面的html,此处命名为a.html
请输入用户名和密码:
<input id="username" type="text" /> <input id="passwords" type="password" /> <button id="btn">设置</button> <button onclick="login()">传递cookie</button> <button onclick="deletecookie()">删除</button>
2.a.html的js代码
//设置cookie var setcookie = function (name, value, day) { //当设置的时间等于0时,不设置expires属性,cookie在浏览器关闭后删除 var expires = day * 24 * 60 * 60 * 1000; var exp = new date(); exp.settime(exp.gettime() + expires); document.cookie = name + "=" + value + ";expires=" + exp.toutcstring(); }; //删除cookie var delcookie = function (name) { setcookie(name, ' ', -1); }; //传递cookie function login() { var name = document.getelementbyid("username"); var pass = document.getelementbyid("passwords"); setcookie('username',name.value,7) setcookie('password',pass.value,7); location.href = 'b.html' } function deletecookie() { delcookie('username',' ',-1) }
3. 接受cookie的页面,此处定义为b.html
<button onclick="getcookie()">获取</button>
4. b.html的js代码
//获取cookie代码 var getcookie = function (name) { var arr; var reg = new regexp("(^| )" + name + "=([^;]*)(;|$)"); if (arr = document.cookie.match(reg)){ return arr[2]; } else return null; }; //点击获取按钮之后调用的函数 function getcookie() { console.log(getcookie("username")); console.log(getcookie("password")) }
二. 通过url传递参数的方式
该案例也是从a.html向b.html页面传递参数
1. a.html的代码
<input type="text" value="猜猜我是谁"> <button onclick="jump()">跳转</button>
2.点击跳转按钮可以将input标签的value值传递到b.html
function jump() { var s = document.getelementsbytagname('input')[0]; location.href='7.获取参数.html?'+'txt=' + encodeuri(s.value); }
3. b.html中的代码
<div id="box"></div> var loc = location.href; var n1 = loc.length; var n2 = loc.indexof('='); var txt = decodeuri(loc.substr(n2+1,n1-n2)); var box = document.getelementbyid('box'); box.innerhtml = txt;
三.通过localstorage
通过localstorage传递参数类似cookie。但是要注意:要访问一个localstorage对象,页面必须来自同一个域名(子域名无效),使用同一种协议,在同一个端口上。
1. a.html中的js文件
//将localstorage传递到哪个页面 location.href = 'b.html' //设置localstorage window.localstorage.setitem('user','haha');
2.b.html中的文件
<button onclick="getcookie()">获取</button> function getcookie() { //获取传递过来的localstorage console.log(window.localstorage.getitem('user')) }
总结
以上所述是小编给大家介绍的js实现把一个页面层数据传递到另一个页面的两种方式,希望对大家有所帮助
上一篇: 王罴怎么读?北魏、西魏名将王罴生平简介
下一篇: Vue.js单向绑定和双向绑定实例分析