从新窗口调用javascript函数

时间:2014-04-13 07:27:58

标签: javascript scope

抱歉,这个问题可能已经解决,但我找不到答案。

我基本上有2个文件:

form.html 代码:

<!DOCTYPE html>
<html>
<head>
<title>BACKUP MONITOR</title>
<script>
    function getEvents()
    {
        alert("getEvents");
    }

    alert("in HTML");

    var w = window.open();

    var s = w.document.createElement("script");
    s.type = 'text/javascript';
    s.src = ".../fileA.js";
    w.document.body.appendChild(s);

    w.alert("New Window");
</script>
</head>
<body>
</body>
</html>

fileA.js 代码:

alert("in fileA");
getEvents();

问题:

我无法从fileA.js(新窗口)调用getEvents()。有没有办法做到这一点?

非常感谢

0 个答案:

没有答案