Unable to preventDefault inside passive event listener

前端 未结 6 920
终归单人心
终归单人心 2020-11-29 06:13

I\'m using Framework7 sortable list and it works well, just that it doesn\'t trigger an event when the list is changed.

So I\'m trying a few built-in events:

<
6条回答
  •  长情又很酷
    2020-11-29 06:46

    For me

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

    did the trick (the { passive: false } part).

提交回复
热议问题