<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My Test Page</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#div1, #div2").bind("contextmenu", function(e) {
return false;
});
});
</script>
</head>
<body>
<div id="div1">
<p>우클릭하면 메뉴가 보이지 않습니다.
</p>
</div>
<div id="div2">
<p>우클릭하면 메뉴가 보이지 않습니다.
</p>
</div>
<div id="div3">
<p>우클릭하면 메뉴가 보입니다..
</p>
</div>
</body>
$("#div1, #div2") 대신에 document를 명시하면 문서 전체에 대해 우클릭 방지를 할 수 있다.
'Developer Diary > ASP' 카테고리의 다른 글
스마트 에디터에서 이미지 리사이즈 시키기 (2) | 2013.10.29 |
---|---|
ASP로 웹사이트 구축이 된 대표적인 기업 (0) | 2013.07.20 |
[해결] ASP.NET 잠재적 위험이 있는 Request.Form 값을 발견했습니다. (2) | 2011.11.10 |
Request.Form과 Request.QueryString의 차이에 대해 (0) | 2010.07.04 |
한글 깨짐 현상 해결 (0) | 2010.06.26 |