赞
踩
直接附上代码:
document.body.ondrop = function (event) { event.preventDefault(); event.stopPropagation(); }
阻止默认动作的发生,还需要阻止事件冒泡。