直接从点击img标签启动colorbox gallery窗口,没有超链接标记

时间:2011-08-14 17:11:31

标签: javascript colorbox

我有一些图片,我希望colorbox直接通过鼠标点击img标记启动其图库,而不是hyperlink标记,因为规则是。有没有办法做到这一点?

2 个答案:

答案 0 :(得分:10)

$('img').click(function() {
    $(this).colorbox({href: $(this).attr('src')});
});

另见我的jsfiddle:http://jsfiddle.net/5HdQB/

答案 1 :(得分:1)

首先向你的imgs添加一个类

<img src="..." class="myImg"/>

$('.myImg').click(function() {
    $(this).colorbox();
});