显示自定义对话框时禁用 IE 菜单
有没有办法在显示自定义对话框/窗口时禁用 IE 的 UI(例如文件菜单)?我所追求的与您 alert()
某些内容时发生的情况类似:浏览器 UI 无法与警报框后面进行交互。
Is there a way to disable IE's UI (e.g. the File Menu) when showing a custom dialog/window? What I'm after is similar to what happens when you alert()
something: the browser UI cannot be interacted with behind the alert box.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要的称为对话框,JQuery 有一个很好的对话框。
What you want is called a dialog, and JQuery has a good one.
不幸的是,你想要的东西是不可能实现的。
alert
和confirm
都 (1) 暂停当前正在执行的 JavaScript,并且 (2) 充当浏览器的模式对话框。没有其他方法可以模拟这种行为。Unfortunately what you want isn't going to be possible.
alert
andconfirm
both (1) pause the currently executing javascript and (2) act as modal dialogs for the browser. There is no other way to simulate this behavior.