我想在加载内容后更改fancybox的高度。我尝试使用$ .fancybox.update()但是它工作。我在加载到fancybox的页面中使用它。
这是我的初始化代码。我正在使用fancybox 2.0.4
$(document).ready(function() {
$(".modal").fancybox({
maxWidth :500,
maxHeight : 600,
minWidth :500,
minHeight : 200,
fitToView : false,
autoSize : true,
type : 'iframe',
padding:1,
modal:true,
helpers: {
title:null
}
});
});
有什么建议让它发挥作用吗?