作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 dragula js 在移动设备中使用拖放功能,突然遇到了一个问题,出现以下错误。
[Intervention] Unable to preventDefault inside passive event listener due to target being treated as passive. See
并且错误命中了下面的函数
function drag (e) {
if (!_mirror) {
return;
}
e.preventDefault();
//other code
}
这可能是什么问题?
最佳答案
这似乎是对 chrome 56 的中断升级以提高滚动性能的问题,请在这里查看
https://github.com/bevacqua/dragula/issues/468
您可以为拖动 handle 定义touch-action: none
来解决这个问题。
似乎是指针事件绑定(bind)的问题。
My issue was solved by adding touch-action: none to the drag handle.
关于javascript - 德拉古拉.js : unable to preventDefault inside passive event listener due to target being treated as passive,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53700273/
我是一名优秀的程序员,十分优秀!