<script>
// 오른쪽 마우스 금지 스크립트
$(document).ready(function() {
$(document).bind("contextmenu", function(e){
// alert("오른쪽 마우스 금지");
return false;
});
$('img').bind("contextmenu",function(e){
// alert("그림에서 오른쪽 마우스 금지");
return false;
});
$('img').bind("selectstart",function(e){
//alert("그림에서 오른쪽 마우스 금지");
return false;
});
});
document.oncontextmenu=function(){return false;} // 우클릭 방지
document.onselectstart=function(){return false;} // 선택 방지
document.ondragstart=function(){return false;} // 드래그 방지
document.onmousedown=function(){return false;} // 셀렉트 박스 방지
</script>
'배워서 남주자 > HTML' 카테고리의 다른 글
[ab] ab 아파치 밴치마킹툴 사용법 (2) | 2020.05.10 |
---|---|
[php] 시스템 정보 확인하기 (0) | 2018.03.23 |
[html] 사이트 포워딩 frame, script (0) | 2018.03.23 |