我基本上有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()。有没有办法做到这一点?
非常感谢