一、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