Tag & Script/HTML
소스보기 막기
미련곰
2007. 8. 20. 16:04
<script language="xxJavaScript">
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("도둑질은 나쁜거예요 불펌금지!");
return false;
}
return true;
}
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.xxonmousedown=right;
function keypressed() {
alert("도둑질은 나쁜거예요 불펌금지!");
}
document.xxonmousedown=right;
document.xxonkeydown=keypressed;
</script>
이에요
도둑질은나쁜거에요그 부분을 님이 원하는대로 바꾸세요
복사를할려고하면 경고창뜨는거랍니다 오른쪽마우스로 클릭도 할수없구요
확실하게 막는거죠 컴트롤+C 해도 않먹히는거에요
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("도둑질은 나쁜거예요 불펌금지!");
return false;
}
return true;
}
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.xxonmousedown=right;
function keypressed() {
alert("도둑질은 나쁜거예요 불펌금지!");
}
document.xxonmousedown=right;
document.xxonkeydown=keypressed;
</script>
이에요
도둑질은나쁜거에요그 부분을 님이 원하는대로 바꾸세요
복사를할려고하면 경고창뜨는거랍니다 오른쪽마우스로 클릭도 할수없구요
확실하게 막는거죠 컴트롤+C 해도 않먹히는거에요