본문 바로가기
프로그래밍/html

html 마우스 우클릭 방지, 블럭 방지 태그

by -현's- 2013. 10. 9.
반응형

 

●<body>안에 아래 태그를 입력한다.

- oncontextmenu='return false' - 우클릭방지
- onselectstart='return false' - 블럭선택방지
- ondragstart='return false' - 드래그방지

 

 

ex)

<body oncontextmenu='return false' onselectstart='return false' ondragstart='return false'>

 

 

 

 

반응형

댓글