我有以下jQuery代码:
$('.button').click(function(e) {
e.preventDefault();
var id = $(this).attr('id');
var panel = $('#picpanel' + id);
var panelhtml = '<ol id="piclist' + id + '" class="piclist"></ol>';
panel.html(panelhtml);
我正在使用jquery ajax live content上的lightbox的jquery代码。但我想显示下一步和预览按钮。现在只显示图片和关闭按钮。我该怎么做呢?
$('a[rel=gallery]').live('click', function() {
url = this.href; // this is the url of the element event is triggered from
$.fn.colorbox({href: url});
return false;
});