XE/Rhmix

오른쪽 마우스 금지하기

by 꽃지닷컴 posted Dec 05, 2017
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄

https://www.codeproject.com/Articles/11222/Disabling-the-right-click-on-web-page

 

<head>

<script language="javascript">
document.onmousedown=disableclick;
status="Right Click Disabled";
Function disableclick(e)
{
  if(event.button==2)
   {
     alert(status);
     return false;
   }
}
</script>

 

<body oncontextmenu="return false">

 

# 적용위치 


1. 부분적용

   작품갤러리 : widget/xenara/~.html

 

2. 레이아웃전체

  /common/common_layout.html
  <header >
   <scrypt> ...  </scrypt>
   <body  oncontextmenu="return false" >   line : 80

Who's 꽃지닷컴

profile

Respect yourself and others will respect you

- 창의적 사고를 하자!

- 소규모 웹사이트 제작 및 수정 (24시간 항시대기)