如何删除“确定” jQuery 警报对话框中的按钮
我使用了 jQuery 警报对话框,我想在警报框中仅显示一条消息,没有任何按钮和“确定”按钮。 jAlert('my message', 'message');
如何从 jQuery 警报对话框中删除“确定”按钮?
I used the jQuery Alert Dialogs, I want display just a message in alert box without any button and "ok" button. jAlert('my message', 'message');
How to remove "OK" button from jQuery Alert Dialogs ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它无法关闭,但您可以通过指定回调函数作为第三个参数来删除“确定”按钮:
但认真考虑一下这一点,因为产生不可关闭的对话框并不会让人们欣喜若狂你的网站。
It can't be closed, but you can remove the OK button by specifying a
callback
function as the 3rd parameter:But seriously think about this, because spawning unclosable dialog boxes won't exactly make people overjoyed about your site.