我有以下代码,当用户滑动.carousel时执行函数。但是我不太清楚如何使用tap功能,我想在用户点击.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) {
...............
}
});