상세 컨텐츠

본문 제목

티스토리 우클릭금지, 드래그금지 불펌방지

생활정보

by 알유잡지 편집장 2020. 4. 28. 14:08

본문

728x90

SCRIPT 추가 및 BODY 이벤트 추가
1. 티스토리 관리자 페이지 접속
2. 꾸미기 카테고리에 스킨편집 클릭

스킨편집



3. 오른쪽 상단에 HTML 편집 클릭

html편집




4. 스크롤을 내려서  /head 태그 찾기, 그리고 바로밑에 Body 태그도 찾을 수 있다.

head




5.  닫힌 /head 태그 바로 위에 SCRIPT 추가 및 Body 태그에 이벤트 넣기 

예시

스크립트

<script type="text/javascript">
var customTag = ["input", "textarea", "select"]; 
customTag = customTag.join("|");
if (typeof document.onselectstart != "undefined"){ 
   document.onselectstart = new Function ("return false"); 
} else { 
   document.onmousedown = unavailable;
   document.onmouseup = available;
} 
function unavailable(e){ 
   if (customTag.indexOf(e.target.tagName.toLowerCase()) == -1){ 
      return false; 
   } 
}
function available(){ 
   return true; 
}
</script>

 

BODY태그이벤트

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

 

 

6. 적용 후 완료!!

적용 클릭!

 

728x90

관련글 더보기

댓글 영역