html5中ondrop()事件无效

在html5中,遇到ondrop()事件无效,可能原因是浏览器的默认操作,需执行事件阻止系统的默认操作。

obj.ondragover = function(e){

   e.preventDefault();

}

obj.ondrop = function(e){

 e.preventDefault();

}

你可能感兴趣的:(前端知识)