本文介绍了如何禁用prettyPhoto?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我现在如何启用prettyphoto,但问题是如何禁用?
I now how to enable prettyphoto, but the problem is how to disable?
这里我启用prettyPhoto
Here i enable prettyPhoto
$(document).ready(function(){ $("a[rel^='prettyPhoto']").prettyPhoto({ social_tools:false, }); });
如何停用?
推荐答案
$("a[rel^='prettyPhoto']").unbind('click');
$("a[rel^='prettyPhoto']").attr('rel', '');
只需取消绑定click and rel属性。
Just unbind click and rel attribute.
这篇关于如何禁用prettyPhoto?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!