我在整个网站使用的主 js 文件中有这个片段
$("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
});
}
但这始终执行为 true,即使在 prettyPhoto 可用的页面上也是如此......任何想法