研究如何在单击的链接具有特定类的情况下完全禁用 prettyPhoto 弹出覆盖的解决方案。到目前为止,不管它一直忽略我的 if 条件。
这是代码:
(function(){
var targetLink = $('.popup');
targetLink.click(function(){
if($(this).hasClass('mobile')){
//do my stuff and then
} else {
$("a[rel^='prettyPhoto']").prettyPhoto({
deeplinking:false,
social_tools:false
});
}
return false;
});
})();
任何想法都会受到赞赏。
谢谢你。