stop_rightkey.js
来自「电脑技术精华大全-共77册-507M.zip」· JavaScript 代码 · 共 11 行
JS
11 行
//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.");
}
//Redirect to index.htm:
// if(top==self) self.location.href="index.htm"
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?