load specific div in modal window using fancybox(使用fancybox在模态窗口中加载特定的div)
问题描述
我正在使用fancybox 2.我已经设法通过AJAX 在fancybox 中加载内容.但它会加载整个页面,我只对特定的 div 感兴趣.在 fancybox 1 中,我们可以通过在 ajax 中添加过滤器来做到这一点.但我不确定如何在fancybox 2 中进行过滤.
I am using fancybox 2. I have manage to load content in fancybox via AJAX. But it loads the whole page and I am only interested in specific div. In fancybox 1 we could do that by adding filter in ajax. But I am not sure how to filter in fancybox 2.
如何在fancybox 2 中从AJAX 加载页面中过滤特定的div?
How to filter specific div from AJAX loaded page in fancybox 2?
$(".fancybox").fancybox({
maxWidth : 800,
maxHeight : 600,
fitToView : false,
width : '70%',
height : '70%',
autoSize : false,
closeClick : false,
openEffect : 'none',
closeEffect : 'none',
type : 'ajax',
'ajax' : {
dataFilter: function(data) {
return $(data).find('#modalArticleContainer')[0];
}
});
Untile ajax 它可以工作但会加载整个页面,当我添加过滤器时它会停止工作.这就是我之前在 fancybox 1 中所做的.
Untile ajax it works but loads whole page, when I add filter then it stops working. This is how I did previously in fancybox 1.
推荐答案
如果你使用的是最新的(https://github.com/fancyapps/fancyBox/zipball/master),那么有一个技巧可以加载特定元素来自 ajax 响应 -
If you are using the latest (https://github.com/fancyapps/fancyBox/zipball/master), then there is a trick to load specific element from the ajax response -
<a href="mypage.html #my_id" class="fancybox fancybox.ajax">Load ajax</a>
$(".fancybox").fancybox();
这篇关于使用fancybox在模态窗口中加载特定的div的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用fancybox在模态窗口中加载特定的div
基础教程推荐
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 我什么时候应该在导入时使用方括号 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 动态更新多个选择框 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01