无法阻止被动事件侦听器内的默认

问题描述 投票:31回答:3

我正在使用Framework7 sortable list并且它运行良好,只是在列表更改时它不会触发事件。

所以我正在尝试一些内置事件:

$('.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

我应该寻找哪种事件来获取每种类型的更新列表?

javascript jquery html-framework-7
3个回答
2
投票

要在用户释放当前在新位置排序元素时在Framework7中处理可排序列表,您可以使用以下代码:

  $$('li').on('sortable:sort',function(event){
    alert("From " + event.detail.startIndex + " to " + event.detail.newIndex);
  });

小提琴:https://jsfiddle.net/0zf5w4y7/


54
投票

看到这个blog post。如果你在每个preventDefault上调用touchstart那么你应该有一个CSS规则来禁用触摸滚动像

.sortable-handler {
  touch-action: none;
}

5
投票

为了我

document.addEventListener("mousewheel", this.mousewheel.bind(this), { passive: false });

做了伎俩({ passive: false }部分)。

© www.soinside.com 2019 - 2024. All rights reserved.