Board logo

标题: [转载代码] JavaScript代码实现严禁右键 [打印本页]

作者: 111    时间: 2013-3-30 15:11     标题: JavaScript代码实现严禁右键

  1. <SCRIPT language=JavaScript>
  2. <!--
  3. function click(e) {
  4. if (document.all) {
  5. if (event.button==2||event.button==3) { alert('严禁点右键')
  6. }
  7. }
  8. if (document.layers) {
  9. if (e.which == 3) {
  10. oncontextmenu='return false';
  11. }
  12. }
  13. }
  14. if (document.layers) {
  15. document.captureEvents(Event.MOUSEDOWN);
  16. }
  17. document.onmousedown=click;
  18. document.oncontextmenu = new Function("return false;")
  19. // -->
  20. </SCRIPT>
复制代码

作者: starthacker    时间: 2013-4-23 08:00

哟西。。。。分享快乐
作者: 我来了    时间: 2013-4-23 16:15

这个有 点意思。




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2