ホームページ > 記事 > ウェブフロントエンド > ページ間のデータ転送を実装する js コード
この記事の内容は、ページ上のデータ転送用の JS 実装コードに関するもので、必要な方は参考にしていただければ幸いです。
以前のインタビューでこの質問をされたので、今日整理してみました。私の技術レベルに限界があるため、間違いがあれば、ご批判ください。
このブログでは、あるページレイヤーから別のページレイヤーにパラメーターを渡す 2 つの方法を要約します。
请输入用户名和密码: <input id="userName" type="text" /> <input id="passwords" type="password" /> <button id="btn">设置</button> <button onclick="login()">传递cookie</button> <button onclick="deletecookie()">删除</button>
//设置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) }
<button onclick="getcookie()">获取</button>
//获取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")) }
この場合もa.htmlからb.htmlページにパラメータを渡します
<input type="text" value="猜猜我是谁"> <button onclick="jump()">跳转</button>
function jump() { var s = document.getElementsByTagName('input')[0]; location.href='7.获取参数.html?'+'txt=' + encodeURI(s.value); }
1. a.html の js ファイル
<p id="box"></p>
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;
js でのデータ オブジェクトの使用法の詳細な紹介 (コード付き)
以上がページ間のデータ転送を実装する js コードの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。