微信端web頁面傳值

一、localStorage 二、這個寫個通用文件common.js function getstr(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); var r = window.location.search.substr(1).match(reg); if(r != null) return decodeURIComponent(r[2]); return null; }html

a.html window.location = 'detail_past.html?id=11&cid=傳值';code

b.html alert(getstr("id")+getstr("cid"));htm

相關文章
相關標籤/搜索