Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Fancybox 不在此页面上运行,它已在许多其他具有相同代码的站点上运行。Firebug 没有给出错误。知道问题可能是什么吗?
http://www.asbestaway.ie/gallery.php
谢谢
鲍勃
那是因为您的代码 for$("a[rel=example_group]")返回一个空数组 - 这意味着没有属性rel值为 equals的锚标记example_group。从你的代码看起来你的锚标签有rel="group",所以如果你把它改成$("a[rel=group]").
$("a[rel=example_group]")
rel
example_group
rel="group"
$("a[rel=group]")