JS實(shí)現(xiàn)把一個頁面層數(shù)據(jù)傳遞到另一個頁面的兩種方式
由于之前面試,被問到過此問題,所以今天特意整理了一下。由于自己技術(shù)水平有限,若存在錯誤,歡迎提出批評。
本博客整理了兩種方式從一個頁面層向另一個頁面層傳遞參數(shù)。
一. 通過cookie方式
1. 傳遞cookie頁面的html,此處命名為a.html
請輸入用戶名和密碼:
<input id="userName" type="text" /> <input id="passwords" type="password" /> <button id="btn">設(shè)置</button> <button onclick="login()">傳遞cookie</button> <button onclick="deletecookie()">刪除</button>
2.a.html的js代碼
//設(shè)置cookie var setCookie = function (name, value, day) { //當(dāng)設(shè)置的時間等于0時,不設(shè)置expires屬性,cookie在瀏覽器關(guān)閉后刪除 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; }; //點(diǎn)擊獲取按鈕之后調(diào)用的函數(shù) function getcookie() { console.log(getCookie("userName")); console.log(getCookie("password")) }
二. 通過url傳遞參數(shù)的方式
該案例也是從a.html向b.html頁面?zhèn)鬟f參數(shù)
1. a.html的代碼
<input type="text" value="猜猜我是誰"> <button onclick="jump()">跳轉(zhuǎn)</button>
2.點(diǎn)擊跳轉(zhuǎn)按鈕可以將input標(biāo)簽的value值傳遞到b.html
function jump() { var s = document.getElementsByTagName('input')[0]; location.href='7.獲取參數(shù).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傳遞參數(shù)類似cookie。但是要注意:要訪問一個localStorage對象,頁面必須來自同一個域名(子域名無效),使用同一種協(xié)議,在同一個端口上。
1. a.html中的js文件
//將localStorage傳遞到哪個頁面 location.href = 'b.html' //設(shè)置localStorage window.localStorage.setItem('user','haha');
2.b.html中的文件
<button onclick="getcookie()">獲取</button> function getcookie() { //獲取傳遞過來的localStorage console.log(window.localStorage.getItem('user')) }
總結(jié)
以上所述是小編給大家介紹的JS實(shí)現(xiàn)把一個頁面層數(shù)據(jù)傳遞到另一個頁面的兩種方式,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!
相關(guān)文章
uni-app實(shí)現(xiàn)數(shù)據(jù)下拉刷新功能實(shí)例
很多列表頁總數(shù)量很大,一次性查詢加載會導(dǎo)致頁面有很長時間的空白期,自然體驗(yàn)感極差,就會使用分頁加載數(shù)據(jù),這篇文章主要給大家介紹了關(guān)于uni-app實(shí)現(xiàn)數(shù)據(jù)下拉刷新功能實(shí)例的相關(guān)資料,需要的朋友可以參考下2022-08-08javascript function、指針及內(nèi)置對象
該文摘自于匿名教程總結(jié),希望對初學(xué)js的同學(xué)有幫助,因?yàn)樗鉀Q了我學(xué)習(xí)js的眾多迷惑。。。2009-02-02