js代码禁止网页文字复制!!禁止右键点击。

 

js代码禁止网页文字复制!!禁止右键点击。

您可以这样:

<SCRIPT LANGUAGE=javascript>
function click() {
alert('禁止你的左键复制!') }
function click1() {
if (event.button==2) {alert('禁止右键点击~!')
}
   }
function CtrlKeyDown(){
if (event.ctrlKey) {
alert('不当的拷贝将损害您的系统!')
}
}

document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;
</SCRIPT>

或这样:

<div style="width:200px;height:200px;" onselectstart="return false">这里面的文字是不能被鼠标选中的</div>

你可能感兴趣的:(function,div)