网页之间传值与获取值
Posted putaopi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页之间传值与获取值相关的知识,希望对你有一定的参考价值。
a.html页面:
function sq(a){
window.location.href = "./list.html?rid=" + a;
}
sq(2);
b.html页面
var rid = getQueryString("rid");
//这样b页面就接收到a页面传过来的参数的值了,只是jq的方法,别忘记了使用之前引入jq
以上是关于网页之间传值与获取值的主要内容,如果未能解决你的问题,请参考以下文章