stop_rightkey.js
来自「电脑技术精华大全-共77册-507M.zip」· JavaScript 代码 · 共 7 行
JS
7 行
//Stop the rightkey of mouse
if (navigator.appName.indexOf("Internet Explorer") != -1)
document.onmousedown = noSourceExplorer;
function noSourceExplorer()
{if (event.button == 2 | event.button == 3)
alert("Right key is prohibited! sorry.");
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?