我想为彩盒创建公共功能,这将为彩盒添加一些功能
$("#selector").colorbox({
inline: true,
popover: true,
})
现在我怎样才能在我的 newPublicMethod 中访问这个弹出窗口?
(function($){
$.fn.colorbox.settings.popover = false;
$.fn.colorbox.myPublicMethod = function(abc){
// how can i read the popover value here
if(popover){
//somecode
}
}
})(jQuery);