set the focus of a popup window every time(每次设置弹出窗口的焦点)
问题描述
我有两个页面 one.html 和 two.html
I have two pages one.html and two.html
我正在使用以下代码打开一个新窗口
I am opening a new window using following code
//here popup is a global variable
popup=window.open('two.html','two');
第一次弹出窗口成功打开并获得焦点但是如果我尝试再次打开它而不关闭已打开的弹出窗口,则 two.html 第二次没有获得焦点.
for the first time a popup window open successfully and get the focus but if I try to open it again without closing already opened popup then two.html is not getting focus for the second time.
注意:我已将弹出窗口的名称设置为两个"
note: I have set popup window's name as 'two'
推荐答案
你可以使用下面使用的focus函数来实现
you can achive by using focus function as used below 
<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>
这篇关于每次设置弹出窗口的焦点的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:每次设置弹出窗口的焦点
 
				
         
 
            
        基础教程推荐
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 如何在特定日期之前获取消息? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
 
    	 
    	 
    	 
    	 
    	 
    	 
    	 
    	 
						 
						 
						 
						 
						 
				 
				 
				 
				