我的代码是,
<html>
<head>
<title>onclick test</title>
<script type="text/javascript">
var googleWindow = window.open('http://www.google.com');
window.onload = change;
function change(){
alert('Hello');
}
</script>
</html>
上面的代码工作正常。它在窗口加载时调用 change 函数。我正在尝试将 onload 事件添加到 googleWindow 但它不起作用。
<html>
<head>
<title>onclick test</title>
<script type="text/javascript">
var googleWindow = window.open('http://www.google.com');
googleWindow.onload = change;
function change(){
alert("Hello');
}
</script>
</html>
如何将事件添加到 googleWindow?
谢谢,