我正在处理一个应用程序。我用
打开了一个窗口 window.open()
现在打开此窗口后,父页面正在刷新(表示页面加载正在发生)。
现在,如何在父页面的页面加载后在子窗口上设置焦点。 请帮助。
答案 0 :(得分:0)
将焦点设置在新窗口上。
尝试使用
window.focus()
答案 1 :(得分:0)
获取正在打开的窗口的句柄,并在重新加载父页面后使用句柄将焦点设置为它。
var popup = window.open(); //open the child window
location.reload(); // reload the parent page
popup.focus(); //set focus on the child window