我正在使用Framework7 可排序列表,它运行良好,只是在列表更改时不会触发事件。
所以我正在尝试一些内置事件:
$('.sortable-handler').on('touchstart', function (e) {
e.preventDefault();
alert('touchstart');
});
$('.sortable-handler').on('touchmove', function (e) {
e.preventDefault();
console.log('touchmove');
});
$('.sortable-handler').on('touchcancel', function (e) {
e.preventDefault();
console.log('touchcancel');
});
$('.sortable-handler').mouseleave(function (e) {
e.preventDefault();
console.log('mouseleave');
});
..但我得到的是:
由于目标被视为被动,因此无法在被动事件侦听器中阻止默认。见 https://www.chromestatus.com/features/5093566007214080
我应该寻找哪个事件来获取每种类型的更新列表?