HTML 中什么命令可以禁止鼠标右键点击?

禁止点击鼠标右键的四种方法
<SCRIPT LANGUAGE=JavaScript id=clientEventHandlersJS>

<!–

function document_onmousedown() {
if (event.button==2)
{
alert(“对不起!不能提供复制的功能!”);
return false;
}

}

function document_onselectstart() {
alert(“对不起!不能提供复制的功能!”);
return false;
}

function document_onkeydown() {
if(window.event.ctrlKey || window.event.altKey){
alert(“对不起!不能提供复制的功能!”);
return false;
}
}

//–>
</SCRIPT>

再来一个代码,也能实现
加入下面的代码就好咯
<SCRIPT language=JavaScript>
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
oncontextmenu=\’return false\’;
}
}
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>

给个简单的

<script language=”JavaScript”>
document.oncontextmenu=new Function(“event.returnValue=false;”); //禁止右键功能,单击右键将无任何反应
document.onselectstart=new Function(“event.returnValue=false;”); //禁止先择,也就是无法复制
</script>

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注