修复从桌面拖拽文件到页面中导致界面变为图片的预览状态

阻止拖拽事件。

<script>
    window.ondragover = function (e) {
        e.preventDefault()
    }
    window.ondrop = function (e) {
        e.preventDefault()
    }
    window.ondragover = function (e) {
        e.preventDefault()
    }
</script>

  

猜你喜欢

转载自www.cnblogs.com/lhwblog/p/9213425.html