如何防止身体点击事件上的彩盒?

时间:2014-07-25 09:56:12

标签: javascript jquery colorbox

我正在使用工作正常的colorbox。我想避免它被身体点击事件关闭。当我点击关闭按钮时它应该关闭。这将是什么语法。 我正在使用此代码。

$(".iframe").colorbox({iframe:true, innerWidth: 570, innerHeight: 300, scrolling: true});

2 个答案:

答案 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});