将变量传递到新页面

发布于 2024-09-05 07:31:45 字数 330 浏览 5 评论 0原文

我试图从一个页面传递一个变量,加载另一个页面并输入该信息。 像这样的事情:

当 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

酷炫老祖宗 2024-09-12 07:31:45

您可以传递查询字符串上的值,然后读取这些值:

location.href = "http://127.0.0.1/newpage.html?foo=1&bar=2";

然后使用 location.search 获取查询字符串并使用 Javascript 对其进行解析。只需确保查询字符串术语不会与可能存在的任何其他术语发生冲突。

You could pass the values on the query string and then read those:

location.href = "http://127.0.0.1/newpage.html?foo=1&bar=2";

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文