0

如果内容高于我的定义,我想为 iframe 添加滚动条,下面的代码不起作用:

$(".class").fancybox({
      iframe : {
        css : {
          width             : "1000px",
          height              : "600px"
                }
            },
      scrolling         : "yes",
      closeClickOutside : false,
      type                  : "iframe",
      afterClose        : function(){location.reload(); return;}
    });
4

1 回答 1

0
$(".class").fancybox({
    iframe : {
            css : {
                width : "1000px",
                height : "600px"
            }
            scrolling : 'yes',
        },
    closeClickOutside : false,
    type : "iframe",
    afterClose : function(){location.reload(); return;}
}); 

您应该将选项参数放在scrolling : 'auto',里面。iframe

于 2017-05-06T13:50:51.003 回答