jQuery ColorBox 确认覆盖模式对话框吗?
我将如何使用 ColorBox 创建一个“确认覆盖”模式对话框,该对话框可以中断表单提交,直到“是” ' 被点击。
How would I use ColorBox to create a 'confirm override' modal dialog that can interupt a form submission until 'yes' is clicked.
Simple Modal has a similar function, but I much prefer colorbox's implementation and documentation, otherwise I'd use the latter.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 overrideClose 属性为 false 来在单击 colorbox div 外部时禁用关闭,并通过将 closebutton 属性设置为 false 将隐藏关闭按钮。这就是如何将 colorbox div 设置为模态。
代码:
$.colorbox({overlayClose:false,closebutton:false});
You can use overlayClose property to false to make disable closing when you click outside the colorbox div and by setting closebutton property to false will hide close button . That is how you can make colorbox div as modal.
code :
$.colorbox({overlayClose:false,closebutton:false});
我无法帮助您使用 ColorBox,但如果您对 SimpleModal 有具体疑问或问题,我很乐意为您提供帮助。
I can't help you with ColorBox, but if you have a specific question or issue with SimpleModal, I'd be happy to help.