我正在尝试从一个页面传递一个变量,加载另一个页面并输入该信息。像这样的东西:
当 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 但想将变量从另一个传递给它们。这可能吗?