没有焦点的新窗口

时间:2018-12-19 10:45:53

标签: javascript window internet-explorer-11

我知道这个问题已被“回答”多次,但对我而言却无济于事。我已经尝试过focus(),blur()。 ect ...我正在使用IE11。有人有什么主意吗?我想打开一个新窗口,但将焦点放在原始窗口上。...

3840 x 2160

1 个答案:

答案 0 :(得分:0)

尝试参考下面的示例可能对您有用。

父页面中的代码。

<html>
<head>
<script language="JavaScript" type="text/javascript">
function openPopUP() {
  window.open('C:\\Users\\Administrator\\Desktop\\95.html','NewWin',
            'toolbar=no,status=no,width=350,height=135')
}
</script>
</head>
<body>
Original Page:<br>
<a href="javascript:openPopUP();">Click to open popup</a>
</body>
</html>

子页面中的代码。

<html>
<head>
<script>
function abc()
{
window.parent.opener.focus(); 
}


</script>
</head>
<body onLoad="abc()">
child page
</body>
</html>