我有以下代码在用户滑动.carousel 时执行函数。但是我不太确定如何使用点击功能,我想在用户点击 .carousel 元素中的链接时执行一个功能。我怎么写这个?谢谢!
$(".carousel").swipe({
excludedElements: "button, input, select, textarea, .noSwipe",
swipeLeft: function() {
$('.carousel').trigger('next', 4);
},
swipeRight: function() {
$('.carousel').trigger('prev', 4);
},
tap: function(event, target) {
...............
}
});