javascript中如何获取上一个网页用户输入的信息并将得到的信息显示在下一个页面上

如题所述

    如果信息量很少的话,可以考虑用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“)


温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2017-10-03
这是父面:
<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>

这样子页就可以获取到父面的文本框值,如果你想要把第二个页的值给第三个值,你在第二个页放个隐藏域。。第三个页值获取第二个页同理啊。。本回答被提问者采纳
第2个回答  2011-06-01
将获取的信息保存到cookies里面
相似回答