请教chrome浏览器自带的图片拖拽和我自己编写的冲突怎么办
我用jquery draggble&droppable写了一个图片拖拽功能,但是貌似因为chrome自带拖拽图片到桌面保存的功能,所以有冲突,请教怎么解决,能不能把chrome自带的拖拽功能覆盖掉。
------解决方案--------------------
attachEvent addEventListener 一个是ie,一个是非ie内核浏览器
------解决方案--------------------可以禁止事件冒泡或者
写
*{
webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}