[html] 마우스 버튼 제어(클릭, 드래그 금지)
로빈아빠
본문
■ 마우스 오른쪽 단추를 사용하지 못하게 하고 싶을때
<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">
☞ 태그 연습장에서 확인하세요.
<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">
☞ 태그 연습장에서 확인하세요.
관련링크
댓글목록
등록된 댓글이 없습니다.