gpt4 book ai didi

javascript - 如何发出 "please turn off the pop up blocker"的警报

转载 作者:行者123 更新时间:2023-11-28 16:38:06 25 4
gpt4 key购买 nike

Possible Duplicate:
How can I detect if a browser is blocking a popup?

嗨,我正在尝试打开一个带有禁用工具栏的子窗口......

如何检查子窗口是否打开并显示此警报?

有人可以帮忙编写代码吗......

最佳答案

当您使用window.open()创建新窗口时,它会返回(理论上)打开的窗口的句柄。然后您可以测试该句柄以确定窗口是否打开:

var child = window.open("mypopup.html");

// some popup blockers prevent the window from being created (!child) and
// others just close them before they're displayed (child.closed)

if (!child || child.closed) {
// tell the user to turn off their popup blocker
}

但是,弹出窗口非常具有侵入性,您应该考虑尝试在页面内显示“弹出窗口”信息。特别是,请查看“对话框”脚本。如果您使用 jQuery,这是一个非常好的 Dialog widget包含在jQuery UI中图书馆。

关于javascript - 如何发出 "please turn off the pop up blocker"的警报,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2711459/

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