<script language="javascript">
function key() //禁止键盘
{
if(event.keyCode>=0){ alert('版权所有(C)2007 '); }
return false;
}
document.onkeydown=key;
function Click() //禁止右键
{
if (event.button!=1){alert('版权所有(C)2007 ');}
}
document.onmousedown=Click;
</script>
function key() //禁止键盘
{
if(event.keyCode>=0){ alert('版权所有(C)2007 '); }
return false;
}
document.onkeydown=key;
function Click() //禁止右键
{
if (event.button!=1){alert('版权所有(C)2007 ');}
}
document.onmousedown=Click;
</script>
浙公网安备 33010602011771号