去除document的拖拽和选中事件

cancelDragHtml(){
    document.ondragstart = function(ev) {
        ev.preventDefault();
    };
    document.ondragend = function(ev) {
        ev.preventDefault();
    };
    document.onselectstart=function (ev) {
        ev.preventDefault();
    };
}

你可能感兴趣的:(去除document的拖拽和选中事件)