📌  相关文章
📜  javascript 打开新窗口并传递数据 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:39.498000             🧑  作者: Mango

代码示例1
// Store the return of the `open` command in a variable
var newWindow = window.open('http://www.mydomain.com');

// Access it using its variable
newWindow.my_childs_special_setting = "Hello World";

//In the child (popup) window, you could access a parent variable like this:
window.opener.my_parents_special_setting