将变量传递到新页面
我试图从一个页面传递一个变量,加载另一个页面并输入该信息。 像这样的事情:
当 127.0.0.1/test.html&ID=1234 时,
location.href = "127.0.0.1/newpage.html"
if (location.href == newpage.html){
var e = document.GetElementById("Loginbx");
e.Value = ID
}
我无权修改 127.0.0.1/test.html 或 newpage.html,但想从另一个将变量传递给它们。这可能吗?
I am trying to pass a variable from one page, load another and enter that information.
something Like this:
When 127.0.0.1/test.html&ID=1234
location.href = "127.0.0.1/newpage.html"
if (location.href == newpage.html){
var e = document.GetElementById("Loginbx");
e.Value = ID
}
I don't have access to modify 127.0.0.1/test.html nor newpage.html but would like to pass variables to them from another. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以传递查询字符串上的值,然后读取这些值:
然后使用 location.search 获取查询字符串并使用 Javascript 对其进行解析。只需确保查询字符串术语不会与可能存在的任何其他术语发生冲突。
You could pass the values on the query string and then read those:
Then use location.search to get the query string and parse it with Javascript. Just make sure none of the query string terms collide with any others that may exist.