如果内容高于我的定义,我希望fancybox为iframe添加滚动条,代码belllow不起作用:
$(".class").fancybox({
iframe : {
css : {
width : "1000px",
height : "600px"
}
},
scrolling : "yes",
closeClickOutside : false,
type : "iframe",
afterClose : function(){location.reload(); return;}
});
答案 0 :(得分:0)
$(".class").fancybox({
iframe : {
css : {
width : "1000px",
height : "600px"
}
scrolling : 'yes',
},
closeClickOutside : false,
type : "iframe",
afterClose : function(){location.reload(); return;}
});
您应该将scrolling : 'auto',
放在iframe
选项参数中。