我有两页one.html和two.html
我正在使用以下代码打开一个新窗口
//here popup is a global variable
popup=window.open('two.html','two');
第一次弹出窗口成功打开并获得焦点但是
如果我尝试再次打开它而不关闭已打开的弹出窗口,那么two.html第二次没有获得焦点.
注意:我将弹出窗口的名称设置为“两个”
解决方法:
您可以使用下面使用的焦点功能来实现
<script language="javascript" type="text/javascript">
<!--
function popitup(url) {
newwindow=window.open(url,'name','height=200,width=150');
if (window.focus) {newwindow.focus()}
if (!newwindow.closed) {newwindow.focus()}
return false;
}
// -->
</script>