3

我需要返回到 Google Chrome 中的开窗器页面。Focus 前段时间有效,但现在无效。我使用最新版本的 Google Chrome (21.0.1180.75)。我没有在互联网上找到这个错误的任何原因或解释。Window.opener.alert() 不是可接受的解决方案。这是我目前拥有的代码:

<html>
<head>
<script type="text/javascript">
function openWin()
{

var params = "menubar=yes,location=yes,resizable=yes,scrollbars=yes,status=yes"
var wnd = window.open("about:_blank", "", params);

wnd.document.write("<input type='button' value='focus' onClick='window.opener.focus()'/>");

}
</script>
</head>
<body>

<input type="button" value="Open 'myWindow'" onclick="openWin()" />

</body>
</html>

提前致谢!

4

0 回答 0