禁止 Copy 復(fù)制?。海ā蠼〔怀湓S移動(dòng)、右鍵不充點(diǎn)擊夠cool
發(fā)布時(shí)間:2008-12-19 閱讀數(shù): 次 來源:網(wǎng)樂原科技
<script LANGUAGE=javascript>
function click() {
alert('禁止你的左鍵復(fù)制!') }
function click1() {
if (event.button==2) {alert('禁止右鍵點(diǎn)擊~!') }}
function CtrlKeyDown(){
if (event.ctrlKey) {alert('不當(dāng)?shù)目截悓p害您的系統(tǒng)!') }}
document.onkeydown=CtrlKeyDown;
document.onselectstart=click;
document.onmousedown=click1;
</script>