禁用右键菜单、禁用鼠标选中、// 禁止键盘F12键
// 禁用右键菜单
document.oncontextmenu = new Function("event.returnValue=false");
// 禁用鼠标选中
document.onselectstart = new Function("event.returnValue=false");
// 禁止键盘F12键
document.addEventListener("keydown", function (e) {
if (e.key == "F12") {
e.preventDefault(); // 如果按下键F12,阻止事件
}
});