我现在如何启用prettyphoto,但是问题是如何禁用?
在这里我启用prettyPhoto
$(document).ready(function(){ $("a[rel^='prettyPhoto']").prettyPhoto({ social_tools:false, }); });
如何禁用?
最佳答案
$("a[rel^='prettyPhoto']").unbind('click');
$("a[rel^='prettyPhoto']").attr('rel', '');
只需取消绑定(bind)click和rel属性即可。
关于javascript - 如何禁用prettyPhoto?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19311979/