html在第一个页面输入数据,点击按钮跳转到第二个页面,并显示在第一个页面输入的数据怎么做?
3个回答
展开全部
如果只是用JavaScript做的话,按照以下方法:
1、在第一个页面按钮提交时把数据拼接成串作为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]);
有用就采纳吧~亲~
1、在第一个页面按钮提交时把数据拼接成串作为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]);
有用就采纳吧~亲~
更多追问追答
追问
就是第二步把值赋给控件怎么赋值?比如我要把数据显示在TEXT文本框里怎么做呢?test2中不要alert的那种,详细点最好有代码例子。。。。。。新手......
追答
加我好友,这里发代码会被和谐.
"test2.html"内容如下:
var txt1 = document.getElementById("txt1");
txt1.value = location.search.match(new RegExp("[\?\&]mydata1=([^\&]+)","i"))[1];
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询