我遇到了将自定义事件绑定到委托控件
的问题任何正常的一天我都使用这个插件
$(".galleryImage").swipe({
swipeLeft: function (event, direction, distance, duration, fingerCount) {
self.changeImageRight('swipe');
},
swipeRight: function (event, direction, distance, duration, fingerCount) {
self.changeImageLeft('swipe');
},
threshold: 75 // px before events are triggered
});
如果我像这样绑定它就可以了
$($galleryImageContainer).delegate('.galleryImage', 'click', function () {
// ... magic stuff
});
但如果我使用滑动它不会
$($galleryImageContainer).delegate('.galleryImage', 'swipe', function () {
// ... magic stuff
});
有没有办法绑定这样的自定义事件?
Thans