jquery fancybox - prevent close on click outside of fancybox(jquery fancybox - 防止在fancybox之外点击关闭)
问题描述
我正在为我的模态窗口使用 Fancybox 插件.似乎无论我使用什么选项,当用户在fancybox 模态窗口(灰色区域)之外单击时,我都无法阻止fancybox 模态窗口关闭.
I'm using the Fancybox plugin for my modal windows. It seems like no matter what options I use I can't prevent the fancybox modal window from closing when the user clicks outside of the fancybox modal window (grayed out area).
有没有办法强制用户点击我触发关闭事件的 X 或按钮?这似乎应该很简单,所以我希望我只是看错了示例.
Is there a way to force the user to click the X or a button that I trigger the close event? This seems like it should be simple so I'm hoping I'm just reading the examples wrong.
我试过 hideOnContentClick: false
但这似乎对我不起作用.有什么想法吗?
I've tried hideOnContentClick: false
but that doesn't seem to be working for me. Any ideas?
推荐答案
没有办法.您将不得不更改源代码.
There is no option for that. You will have to change the source code.
在 jquery.fancybox-1.2.1.js 中,你需要在 _finish 方法中注释掉(或删除)第 341 行:
In jquery.fancybox-1.2.1.js you need to comment out (or delete) line 341 in the _finish method:
//$("#fancy_overlay, #fancy_close").bind("click", $.fn.fancybox.close);
这篇关于jquery fancybox - 防止在fancybox之外点击关闭的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:jquery fancybox - 防止在fancybox之外点击关闭
基础教程推荐
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01