javascript是否有助于将内容传输到另一个页面,然后执行某些操作。我找不到任何允许我在重定向页面上执行操作的相关命令。
基本上,我追随以下(usecase的例子):
这可能吗?
答案 0 :(得分:2)
如果您使用Javascript将用户重定向到新页面,则可以像这样设置新窗口的全局变量,
// Save the reference to the new window in a variable
var redirect = window.open('http://www.example.com');
//form the variables as an object
var variables = {
var1: "First Value",
var2: "Second Value",
...
}
// Send the variables to new page
redirect.variables = myVariables;
然后在新页面中你可以做到
console.log(window.variables.var1); //will give "First Value"
console.log(window.variables.var2); //will give "Second Value"