Những câu nói yêu thích

SAD Blog's
Người tôi yêu đã không còn yêu tôi :(
Anh bật khóc khi thấy mình thua thiệt - Bởi vì nghèo không mua nổi tình em

Thứ Tư, 22 tháng 9, 2010

Code JavaScript cấm click chuột phải

Đoạn java này có tác dụng giúp bạn ngăn chặn được người ngoài view source trang web của bạn. Nó rất hay thử đi nha.



<script language=JavaScript>
<!--

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Tình view source hả ! Index này dễ tự code 1 cái đi. Đừng lười !";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

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

// -->

0 nhận xét:

Đăng nhận xét