背景窗口弹出

发布于 2024-12-29 21:59:30 字数 215 浏览 0 评论 0原文

我正在打开一个新窗口弹出窗口,我想将其保留在后台并继续关注当前窗口。我正在做类似的事情,但它不起作用。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

吃兔兔 2025-01-05 21:59:30

如果不需要看到该窗口,您可以使用隐藏的 iframe。

var iframe = document.createElement("iframe");
iframe.src = "http://xyz.com";
iframe.style.display = "none";

If the window doesn't ever need to be seen, you could instead use a hidden iframe.

var iframe = document.createElement("iframe");
iframe.src = "http://xyz.com";
iframe.style.display = "none";
合约呢 2025-01-05 21:59:30

您可以模糊背景窗口

var win = window.open('http://www.xyz.com');
win.blur();
window.focus();

这应该在应用程序中适合您

You can blur the background window

var win = window.open('http://www.xyz.com');
win.blur();
window.focus();

This should work for you in the application

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文