+
80
-

为啥ipad上的Safari不支持html5的drag drop api呢?

为啥ipad上的Safari不支持html5的drag drop api呢?

网友回复

+
0
-

支持的,只要加入这个小补丁就好了,这个补丁可以让andriod和ios的浏览器支持html5原生的drag和drop拖放api。

github地址:https://github.com/timruffles/mobile-drag-drop

有两点一定要注意

1、一定要增加dragenter监听事件,并返回event.preventDefault(); 2、如果你的iOS Safari版本在 10.x 或以上,就必须增加被动事件监听:

// iOS>=10 supports passive event listeners
// but make sure to catch or check passive event listener support
// regarding this code running on other platforms.
window.addEventListener( 'touchmove', function() {}, {passive: false});

我知道答案,我要回答