标题: [转载代码] JavaScript代码实现严禁右键 [打印本页]
作者: 111 时间: 2013-3-30 15:11 标题: JavaScript代码实现严禁右键
- <SCRIPT language=JavaScript>
- <!--
- function click(e) {
- if (document.all) {
- if (event.button==2||event.button==3) { alert('严禁点右键')
- }
- }
- if (document.layers) {
- if (e.which == 3) {
- oncontextmenu='return false';
- }
- }
- }
- if (document.layers) {
- document.captureEvents(Event.MOUSEDOWN);
- }
- document.onmousedown=click;
- document.oncontextmenu = new Function("return false;")
- // -->
- </SCRIPT>
复制代码
作者: starthacker 时间: 2013-4-23 08:00
哟西。。。。分享快乐
作者: 我来了 时间: 2013-4-23 16:15
这个有 点意思。
欢迎光临 批处理之家 (http://www.bathome.net/) |
Powered by Discuz! 7.2 |