在html5中,遇到ondrop()事件无效,可能原因是浏览器的默认操作,需执行事件阻止系统的默认操作。
obj.ondragover = function(e){
e.preventDefault();
}
obj.ondrop = function(e){
e.preventDefault();
}
在html5中,遇到ondrop()事件无效,可能原因是浏览器的默认操作,需执行事件阻止系统的默认操作。
obj.ondragover = function(e){
e.preventDefault();
}
obj.ondrop = function(e){
e.preventDefault();
}