gpt4 book ai didi

javascript - 将 PopUp 从后台移动到前台

转载 作者:行者123 更新时间:2023-11-28 02:15:08 26 4
gpt4 key购买 nike

我使用以下代码打开一个弹出窗口:

$('a[href^="/foto/"]').live ('click', function (e)
{
e.preventDefault ();
// open popup
window.open (
$(this).attr ('href'),
'imgPreview',
'width=1050,height=902,scrollbars=yes,menu=yes,toolbar=no'
);
});

此代码按预期工作,但如果弹出窗口位于后台,并且我单击另一个以/foto/开头的链接,则弹出窗口将保留在后台。因此,可能没有意识到照片已经显示在弹出窗口中。

如果我点击链接,是否可以将照片弹出窗口从背景移动到前景?

最佳答案

据我所知,window.focus() 可以解决这个问题:

$('a[href^="/foto/"]').live ('click', function (e)
{
e.preventDefault ();
// open popup
var win=window.open (
$(this).attr ('href'),
'imgPreview',
'width=1050,height=902,scrollbars=yes,menu=yes,toolbar=no'
);
win.focus();
});

关于javascript - 将 PopUp 从后台移动到前台,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16505104/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com