복사방지+드래그금지+마우스우클릭 금지

by 조쉬 posted Dec 22, 2016
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

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

 // 복사방지+드래그금지+마우스우클릭 금지

 

<script type="text/javascript">

var omitformtags=["input", "textarea", "select"]

omitformtags=omitformtags.join("|")

function disableselect(e){
if (omitformtags.indexOf(e.target.tagName.toLowerCase())==-1)
return false
}

function reEnable(){
return true
}

if (typeof document.onselectstart!="undefined")
document.onselectstart=new Function ("return false")
else{
document.onmousedown=disableselect
document.onmouseup=reEnable
}

</script>

 

 

// 컨트롤키 사용금지

 

<script language="javascript">
 
 var Focus_ = false;
 function keypress()
 {
  if(Focus_ == true)
  {
   if(event.keyCode == 17) alert("컨트롤키쓰면 디진다...");
  }
 }

 document.onkeydown=keypress;

</script>

 


<form name="FForm">
 <input type="input" name="orion" onFocus="Focus_=true;">
</form>