javascript实现屏蔽鼠标右键功能详解编程语言

2014-05-19 14:56

屏蔽鼠标右键

dgzxyz

javascript实现屏蔽鼠标右键功能

在body标签里加上oncontextmenu=self.event.returnvalue=false

或者

function nocontextmenu()
{
   if(document.all) {
       event.cancelBubble=true;
       event.returnvalue=false;
       return false;
    }
}

或者

=========================================================================
oncontextmenu=”window.event.returnValue=false” 将彻底屏蔽鼠标右键

no

可用于Table

=======================================================================

把如下代码加入

区域中  

  

function  click()  {  

if  (event.button==2)  {  

event.button==1  

}  

}  

document.onmousedown=click  

  

让鼠标左右合一。  

===============================================================

禁止鼠标右键    
代码如下:  
   
  
function  mouse_down()  
{  
     if(event.button==2){alert(“对不起!没有右键功能!”);}  
}  
document.onmousedown=mouse_down;  
  
如果禁止鼠标左键请把event.button==2代码中的数值2改为1!

<body oncontextmenu=”return false” onselectstart=”return false” ondragstart=”return false” onbeforecopy=”return false” onmouseup=document.selection.empty() oncopy=document.selection.empty() onselect=document.selection.empty()></body>
讲上面红色显示的插入到网页中就可以实现鼠标右击无效
onselectstart=”return false” 禁止选择,ondragstart=”return false”禁止拖放,oncopy=document.selection.empty() 禁止拷贝。

禁止保存:<noscript><iframe src=”*.htm”></iframe></noscript>,放在head里面。

禁止粘贴:<input type=text onpaste=”return false”>

关闭输入法:<input style=”ime-mode:disabled”>

屏蔽鼠标右键:
function document.oncontextmenu(){event.returnValue=false;}

屏蔽F1帮助:
function window.onhelp(){return false}

屏蔽其他键
function document.onkeydown()
{
if ((window.event.altKey)&&
((window.event.keyCode==37)|| //屏蔽 Alt+ 方向键 ←
(window.event.keyCode==39))) //屏蔽 Alt+ 方向键 →
{
alert(“不准你使用ALT+方向键前进或后退网页!”);
event.returnValue=false;
}
/* 注:这还不是真正地屏蔽 Alt+ 方向键,
因为 Alt+ 方向键弹出警告框时,按住 Alt 键不放,
用鼠标点掉警告框,这种屏蔽方法就失效了。以后若
有哪位高手有真正屏蔽 Alt 键的方法,请告知。*/
if ((event.keyCode==8) || //屏蔽退格删除键
(event.keyCode==116)|| //屏蔽 F5 刷新键
(event.ctrlKey && event.keyCode==82)){ //Ctrl + R
event.keyCode=0;
event.returnValue=false;
}
if (event.keyCode==122){event.keyCode=0;event.returnValue=false;} //屏蔽F11
if (event.ctrlKey && event.keyCode==78) event.returnValue=false; //屏蔽 Ctrl+n
if (event.shiftKey && event.keyCode==121)event.returnValue=false; //屏蔽 shift+F10
if (window.event.srcElement.tagName == “A” && window.event.shiftKey)
window.event.returnValue = false; //屏蔽 shift 加鼠标左键新开一网页
if ((window.event.altKey)&&(window.event.keyCode==115)) //屏蔽Alt+F4
{
window.showModelessDialog(“about:blank”,””,”dialogWidth:1px;dialogheight:1px”);
return false;
}
}

屏蔽打印:
<style>
@media print{
* {display:none}
}
</style>

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/13548.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论