想在子窗口中从父窗口运行javascript函数
例子
我不得不说不同的site1.com
网站site2.com
我想从site1.com
打开 URL 的新窗口site2.com
new_window = window.open("site2.com/index.php", "window2");
然后我想test()
在这个 new_window 上运行一个 js 函数。
// Where site2.com/index.php
<html>
......
</html>
<script>
function test(){
// some code here
}
</script>
概括
想要打开新窗口(子窗口)并从父窗口运行一些 JS 函数。