사이트 내 전체검색
[html] 마우스 버튼 제어(클릭, 드래그 금지)
로빈아빠
https://cmd.kr/javascript/430 URL이 복사되었습니다.

본문

■ 마우스 오른쪽 단추를 사용하지 못하게 하고 싶을때

<script>
function mouse_down() {
if (event.button==2) {
alert("마우스 오른쪽 버튼 클릭");
}
}
document.onmousedown=mouse_down;
</script>

■ 마우스 클릭을 못하게 하고 싶을때

<script>
function mouse_click() {
if (event.type=="mousedown") {
alert("마우스 클릭");
}
}
document.onmousedown=mouse_click;
</script>

■ 하나 더!
<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false">

☞ 태그 연습장에서 확인하세요.

댓글목록

등록된 댓글이 없습니다.

831 (9/17P)

Search

Copyright © Cmd 명령어 3.131.36.247