我只希望这个 jcarousel 在加载“li img”时打开链接,而不是点击唱片页面。我是一名学习 jQuery 的设计师。请跟我走轻松。这是我的第一个问题。:)
$(function () {
/**
* build the carousel for the Albums
*/
$('#mp_albums').jcarousel({
scroll: 1,
wrap: 'both',
}).children('li').bind('click', function () {
//when clicking on an Album, display its info, and hide the current one
var $this = $(this);
$('#mp_content_wrapper').find('.mp_content:visible').hide();
$('#mp_content_wrapper').find('.mp_content:nth-child(' + parseInt($this.index() + 1) + ')').fadeIn(1000);
});
});
提前致谢。