背景窗口弹出
我正在打开一个新窗口弹出窗口,我想将其保留在后台并继续关注当前窗口。我正在做类似的事情,但它不起作用。
var currentWindow = window;
var newWindow = window.open("http://www.example.com");
currentWindow.focus();
我将不胜感激的建议或任何形式的帮助。
I am opening up a new window popup and I want to keep it in background and keep focus on my current window. I am doing something like this but it doesn't work.
var currentWindow = window;
var newWindow = window.open("http://www.example.com");
currentWindow.focus();
I will appreciate suggestions or any kind of help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果不需要看到该窗口,您可以使用隐藏的 iframe。
If the window doesn't ever need to be seen, you could instead use a hidden iframe.
您可以模糊背景窗口
这应该在应用程序中适合您
You can blur the background window
This should work for you in the application