【发布时间】:2011-10-12 20:42:46
【问题描述】:
我的主 js 文件中有这个 sn-p,我们整个网站都在使用它
$("a[rel^='prettyPhoto']").prettyPhoto({
theme: 'light_square',
showTitle: false,
allow_resize: true
});
那个问题是,在某些页面上,prettyPhoto 是未定义的,并导致萤火虫出错,所以我想我会试试这个
if(typeof prettyPhoto=="undefined"){
//do nothing
}else{
$("a[rel^='prettyPhoto']").prettyPhoto({
theme: 'light_square',
showTitle: false,
allow_resize: true
});
}
但这总是执行为真,即使在 prettyPhoto 可用的页面上也是如此......任何想法
【问题讨论】:
标签: jquery jquery-plugins prettyphoto