我正在为画廊使用众所周知且优秀的 jQuery Colorbox。部分图像正在使用 ajax 添加到页面中。我正在尝试将颜色框绑定到页面上的所有新图像和现有图像,并将所有图像组合在一起。现在,我只成功实现了两者之一。使用此代码,所有图像都很好地组合到一个颜色框库中,但是在向页面添加更多图像(通过 ajax)之后,颜色框根本没有绑定到它们:
$('a.exhibition').colorbox({
inline:true,
href:$(this).attr('href'),
opacity:0.5,
overlayClose:true,
rel:"hpexhibition"
});
使用此代码,在向页面添加更多图像后,图像被绑定到颜色框,但 rel 分组不起作用(甚至不是第一次加载到页面的图像集):
$('a.exhibition').live('click', function() {
$.fn.colorbox({
inline:true,
href:$(this).attr('href'),
opacity:0.5,
overlayClose:true,
rel:"hpexhibition"
});
return false;
});
我也尝试了这段代码,但它是相同的 - 图像很好地绑定到颜色框,但作为单个图像,而不是作为(rel)图库:
$("ul#home-exhibition").on("click", "a[rel='hpexhibition']", function (event) {
event.preventDefault();
$.colorbox({
inline:true,
href:$(this).attr('href'),
opacity:0.5,
overlayClose:true,
rel:"hpexhibition"
});
});
我的图片库的 html 标记是这样的:
<ul id="home-exhibition">
<li class="item">
<a class="exhibition" rel="hpexhibition" ref="3" href="#artitem-cb-details-3">
<img src="path/to/image53.jpg" alt="" />
</a>
<div style="display:none;">
<div id="artitem-cb-details-3" class="artitem-cb">
//Some data of image 3 here...
</div>
</div>
</li>
<li class="item">
<a class="exhibition" rel="hpexhibition" ref="4" href="#artitem-cb-details-4">
<img src="path/to/image4.jpg" alt="" />
</a>
<div style="display:none;">
<div id="artitem-cb-details-4" class="artitem-cb">
//Some data of image 4 here...
</div>
</div>
</li>
<li> ..... </li>
<li> ..... </li>
<li> ..... </li>
</ul>
有没有办法将这两者结合起来,以便颜色框适用于页面上的所有图像 - 也包括通过 ajax 添加的图像 - 并且还将所有这些图像组合在一起?我无法完成这项工作。我相信应该有办法做到这一点。