是否可以从第一页到第二页获取值..但是没有FORM
我们应该使用window.parent.document.getElementById(“”)。value ..
但这是在弹出窗口中工作,但我需要在两页之间将其从第一页重定向到第二页。
答案 0 :(得分:1)
如果要从一个页面重定向到另一个页面,则必须使用表单元素从一个页面传递到另一个页面或使用查询字符串值。也就是说,Javascript对上一页的结构没有任何了解..
答案 1 :(得分:1)
或者你可以使用cookies ......
答案 2 :(得分:0)
您也可以通过调用site.com/index.php?info=value
并转义value
的内容来简单地使用GET变量。 URL可以通过dinamically更改,如下所示:
<input type="text" id="the_value" />
<a href="#" onclick="return updateURL()" id="the_link">Click me</a>
<script type="text/javascript">
function updateURL()
{
document.getElementById('the_link').href =
'site.com/index2.php?info=' +
encodeURIComponent(document.getElementById('the_value'));
return true;
}
</script>