我需要在Google Chrome中返回我的开窗器页面。焦点工作前一段时间,但现在它没有。我使用的是最新版本的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>
提前致谢!