html 禁用鼠标

2024-07-04 09:37:31

body样式禁用

body{

    -moz-user-select: -moz-none;

    -moz-user-select: none;

    -o-user-select:none;

    -khtml-user-select:none;

    -webkit-user-select:none;

    -ms-user-select:none;

    user-select:none;

  }


js


function disableSelection(event) {

    if (typeof event.preventDefault !== "undefined") {

        event.preventDefault();

    } else {

        event.returnValue = false;

    }

}

// // 在加载页面时绑定事件

document.addEventListener("mousedown", disableSelection);

document.addEventListener("contextmenu", disableSelection);