手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >JSCode all of Brower 全局屏蔽网页右键功能 具体实现
JSCode all of Brower 全局屏蔽网页右键功能 具体实现
摘要:[javascript]复制代码代码如下:functionclickIE4(){if(event.button==2){returnfals...

[javascript]

复制代码 代码如下:

<script type="text/javascript">

function clickIE4(){

if (event.button==2){

return false;

}

}

function clickNS4(e){

if (document.layers||document.getElementById&&!document.all){

if (e.which==2||e.which==3){

return false;

}

}

}

function OnDeny(){

if(event.ctrlKey || event.keyCode==78 && event.ctrlKey || event.altKey || event.altKey && event.keyCode==115){

return false;

}

}

if (document.layers){

document.captureEvents(Event.MOUSEDOWN);

document.onmousedown=clickNS4;

document.onkeydown=OnDeny();

}else if (document.all&&!document.getElementById){

document.onmousedown=clickIE4;

document.onkeydown=OnDeny();

}

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

</script>

<script type="text/javascript">

function clickIE4(){

if (event.button==2){

return false;

}

}

function clickNS4(e){

if (document.layers||document.getElementById&&!document.all){

if (e.which==2||e.which==3){

return false;

}

}

}

function OnDeny(){

if(event.ctrlKey || event.keyCode==78 && event.ctrlKey || event.altKey || event.altKey && event.keyCode==115){

return false;

}

}

if (document.layers){

document.captureEvents(Event.MOUSEDOWN);

document.onmousedown=clickNS4;

document.onkeydown=OnDeny();

}else if (document.all&&!document.getElementById){

document.onmousedown=clickIE4;

document.onkeydown=OnDeny();

}

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

</script>

【JSCode all of Brower 全局屏蔽网页右键功能 具体实现】相关文章:

JavaScript中eval函数的问题

javascript实现淡蓝色的鼠标拖动选择框实例

Jquery使用css方法改变样式实例

JS实现屏蔽shift,Ctrl,alt等功能键的方法

JS实现定时自动关闭DIV层提示框的方法

无限扩展的年份select

Jquery中基本选择器用法实例详解

jQuery实现弹出窗口中切换登录与注册表单

Prototype1.4手册

javascript基于DOM实现省市级联下拉框的方法

精品推荐
分类导航