오른쪽 마우스 버튼 사용 금지 시키는 자바스크립트
[CODE]
<!–=================================================================*/
/* SUBJECT : JAVASCRIPT TIP */
/* WRITTEN : picacube.com */
/* CONTACT : www.picacube.com, picacube@picacube.com */
/* UP-DATE : 2008-01-17 */
/*==================================================================–>
<!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN”>
<html>
<head>
<title>소스 보기를 막는 예제</title>
<script language=”JavaScript”>
<!–
function handleMouseDown(e)
{
if (navigator.appName == ‘Netscape’)
{
if(e.which == 3 || e.which == 2)
{
alert(“오른쪽 버튼은 사용할 수 없습니다!”);
return false;
}
}
else if (navigator.appName == ‘Microsoft Internet Explorer’)
{
if(event.button == 2 || event.button == 3)
{
alert(“오른쪽 버튼은 사용할 수 없습니다!”);
return false;
}
}
return true;
}
function handleKeyPress()
{
alert(“키보드는 사용할 수 없습니다!”);
}
document.onmousedown = handleMouseDown;
document.onkeydown = handleKeyPress;
–>
</script>
</head>
<body oncontextmenu=”return false;” onselectstart=”return false;” ondragstart=”return false;”>
마우스 오른쪽 버튼과 키를 막아서 소스 보기를 할 수 없도록 하는 예제입니다.
</body>
</html>
[/CODE]
Comments