您好我有这个花哨的盒子脚本(下面)我需要将它更改为什么,以使其从一些已加载.load的内容中工作?任何帮助非常感谢!
<script type="text/javascript">
$(document).ready(function() {
$("#various1").fancybox({
'padding' : '10',
});
});
</script>
答案 0 :(得分:0)
这样做的一种方法是在添加新内容后再次调用fancybox()方法。
这将重新绑定相关项目以使用fancybox。
$("#various1").load(function(){
// Do your load work here, adding items to the collection.
$(this).fancybox([...]); // re-bind the fancybox
});
答案 1 :(得分:0)
命名您的花哨功能并在加载后调用它。
$(document).ready(var1fancy);
function va1fancy() {
$("#various1").fancybox({
'padding' : '10',
});
}