JS input文本框禁用右键和复制粘贴功能的代码

代码如下:

 1 function click(e) 

 2 { 

 3 if (document.all) 

 4 { 

 5 if (event.button==1||event.button==2||event.button==3) 

 6 { 

 7 oncontextmenu='return false'; 

 8 } 

 9 } 

10 if (document.layers) 

11 { 

12 if (e.which == 3) 

13 { 

14 oncontextmenu='return false'; 

15 } 

16 } 

17 } 

18 if (document.layers) 

19 { 

20 document.captureEvents(Event.MOUSEDOWN); 

21 } 

22 document.onmousedown=click; 

23 document.oncontextmenu = new Function("return false;") 

24 var trxdyel=true 

25 var hotkey=17 /* hotkey即为热键的键值,是ASII码,这里99代表c键 */ 

26 if (document.layers) 

27 document.captureEvents(Event.KEYDOWN) 

28 function gogo(e) 

29 { 

30 if (document.layers) 

31 { 

32 if (e.which==hotkey && trxdyel) 

33 { 

34 alert('操作错误.或许是您按错键了!'); 

35 } 

36 } 

37 else if (document.all) 

38 { 

39 if (event.keyCode==hotkey&&trxdyel){ alert('操作错误.或许是您按错键了!'); }} 

40 } 

41 document.onkeydown=gogo 

将以上JS代码写到JS文件中取名为xp.js并放入Script文件夹中,引用时需要注意设置Charset=“gb2312”,不然提示出的信息会是乱码。页面引用:

代码如下:

1 <script src="../Script/xp.js" type="text/javascript" charset="gb2312"></script>

1. 将彻底屏蔽鼠标右键

1 oncontextmenu="window.event.returnValue=false" 

2 <table border oncontextmenu=return(false)> <td> no</table> 可用于Table 

3 function click() { 

4 if (event.button==2) { 

5 alert('对不起,本页禁用右键!') 

6 } 

7 } 

8 document.onmousedown=click 

2.取消选取、防止复制
 1 <body onselectstart="return false">  

3. 不准粘贴

 1 onpaste="return false"  

4.防止复制

 1 oncopy="return false;" oncut="return false;"  

 

你可能感兴趣的:(input)