点空白处 不关闭对话框 必须点关闭按钮或Esc
1.Add one parameter in settings
$.extend($.facebox, {
settings: {
opacity : 0.5,
overlay : true,
modal : true, //New parameter
........
}
2. Modify the function showOverlay()
replace the line .click(function() { $(document).trigger
('close.facebox') })
with .click(function() {
if ($.facebox.settings.modal != true)
$(document).trigger('close.facebox')
})
本文介绍如何在Facebox插件中实现模态对话框功能,通过新增参数modal及修改showOverlay函数,使得对话框在点击空白区域时不会关闭。
266

被折叠的 条评论
为什么被折叠?



