我正在使用工作正常的colorbox。我想避免它被身体点击事件关闭。当我点击关闭按钮时它应该关闭。这将是什么语法。 我正在使用此代码。
$(".iframe").colorbox({iframe:true, innerWidth: 570, innerHeight: 300, scrolling: true});
答案 0 :(得分:2)
您可以使用overlayClose: false
属性在点击灰色背景时禁用颜色框的关闭。
overlayClose
的默认值为true
$(".iframe").colorbox({iframe:true,
innerWidth: 570,
innerHeight: 300,
scrolling: true,
overlayClose: false});
更多信息 - colorbox
答案 1 :(得分:1)
使用它:
$(".iframe").colorbox({iframe:true, innerWidth: 570, innerHeight: 300, scrolling: true, overlayClose: false});