index.js
来自「龍族 伺服器 管理 系統 管理網路遊戲(龍族)的asp網頁」· JavaScript 代码 · 共 28 行
JS
28 行
function killErrors() {
return true;
}
window.onerror = killErrors;
window.onbeforeunload = window_onbeforeunload;
document.oncontextmenu = document_oncontextmenu;
document.onselectstart = document_onselectstart;
document.onkeydown = document_onkeydown;
function document_oncontextmenu(){
window.event.returnValue = false;
}
function document_onselectstart(){
return false;
}
function document_onkeydown() {
if(window.event.ctrlKey || window.event.altKey || window.event.keyCode == 115)
{
event.keyCode=0;
event.returnValue=false
return false;
}
}
function window_onbeforeunload(){
return " ";
}
window.moveTo(0,0);
window.resizeTo(window.screen.Width ,window.screen.height-30);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?