展开全部
在第一个页面按钮提交时把数据拼接成串作为QueryString
例如document.location.href = 'test2.html?mydata1=test';
2、在第二个页面加上Javascript取location中的mydata1=test然后赋给要显示的控件就可以了。取值可以用正则表达式。例如:
var result = location.search.match(new RegExp("[\?\&]mydata1=([^\&]+)","i"))[1];
下面是个例子,你可以参考下:
"test1.html"
<input type=button onclick="document.location.href = 'test2.html?mydata1=test';"/>
"test2.html"
alert(location.search.match(new RegExp("[\?\&]mydata1=([^\&]+)","i"))[1]);
例如document.location.href = 'test2.html?mydata1=test';
2、在第二个页面加上Javascript取location中的mydata1=test然后赋给要显示的控件就可以了。取值可以用正则表达式。例如:
var result = location.search.match(new RegExp("[\?\&]mydata1=([^\&]+)","i"))[1];
下面是个例子,你可以参考下:
"test1.html"
<input type=button onclick="document.location.href = 'test2.html?mydata1=test';"/>
"test2.html"
alert(location.search.match(new RegExp("[\?\&]mydata1=([^\&]+)","i"))[1]);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询