美文网首页
去除document的拖拽和选中事件

去除document的拖拽和选中事件

作者: 变态的小水瓶 | 来源:发表于2019-03-12 17:02 被阅读0次
    cancelDragHtml(){
        document.ondragstart = function(ev) {
            ev.preventDefault();
        };
        document.ondragend = function(ev) {
            ev.preventDefault();
        };
        document.onselectstart=function (ev) {
            ev.preventDefault();
        };
    }
    

    相关文章

      网友评论

          本文标题:去除document的拖拽和选中事件

          本文链接:https://www.haomeiwen.com/subject/quvnpqtx.html