javascript中如何获取上一个网页用户输入的信息并将得到的信息显示在下一个页面上
3个回答
展开全部
如果信息量很少的话,可以考虑用cookie保存
设置:document.cookie="name="+username;
读取:var username=document.cookie.split(";")[0].split("=")[1];
如果信息量大,可以考虑用localstorage,现在主流浏览器都支持本地存储。最大有5M的存储空间
设置:localstorage.setItem("name",username)
读取:localstorage.getItem("name")
删除:localstorage.removeItem("name“)
展开全部
这是父面:
<html>
<head></head>
<script>
function goto(){
window.open("b.html");
}
</script>
<body>
<input type="text" id="a"/><a href="#" onclick="goto();">b.html</a>
</body>
</html>
这是子页
<html>
<head></head>
<script>
function get(){
var a=opener.document.getElementById("a").value;
alert(a);
}
</script>
<body>
<input type="button" value="点击" onclick="get();"></button>
</body>
</html>
这样子页就可以获取到父面的文本框值,如果你想要把第二个页的值给第三个值,你在第二个页放个隐藏域。。第三个页值获取第二个页同理啊。。
<html>
<head></head>
<script>
function goto(){
window.open("b.html");
}
</script>
<body>
<input type="text" id="a"/><a href="#" onclick="goto();">b.html</a>
</body>
</html>
这是子页
<html>
<head></head>
<script>
function get(){
var a=opener.document.getElementById("a").value;
alert(a);
}
</script>
<body>
<input type="button" value="点击" onclick="get();"></button>
</body>
</html>
这样子页就可以获取到父面的文本框值,如果你想要把第二个页的值给第三个值,你在第二个页放个隐藏域。。第三个页值获取第二个页同理啊。。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
将获取的信息保存到cookies里面
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |