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

阻止拖拽事件。

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

  

posted @ 2018-06-22 14:51  he伟_li  阅读(353)  评论(0编辑  收藏  举报