setfocus.js

来自「SK信息采集2.0功能介绍: 1.可针对任何静态网页,动态网页进行采集。包括h」· JavaScript 代码 · 共 44 行

JS
44
字号
 /*
 作用:使MainFrame始终获得焦点
 */
 document.onkeydown=keyDown;
 function keyDown()
 { // alert(typeof(parent.frames['MainFrame'])); 
  if ((event.ctrlKey)||(event.altKey)||(event.keyCode==46))   
   {
     if (typeof(parent.frames['MainFrame'])=='object')
     { 
      parent.frames['MainFrame'].focus();
	  }
    else
     top.frames['MainFrame'].focus();	
  }
 }

//鼠标右键绝对禁止法
if (window.Event) 
document.captureEvents(Event.MOUSEUP); 
function nocontextmenu() 
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
function norightclick(e) 
{
if (window.Event) 
{
if (e.which == 2 || e.which == 3)
return false;
}
else
if (event.button == 2 || event.button == 3)
{
event.cancelBubble = true
event.returnValue = false;
return false;
}
}
document.oncontextmenu = nocontextmenu; // for IE5+
document.onmousedown = norightclick; // for all others

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?