728x90
반응형
1. 티스토리 관리 센터에서 HTML/CSS 편집에 들어간다.
2. HTML 편집에 코드를 추가한다.
# <head>와 </head> 사이 <script>와 </script> 사이에 script 코드를 추가한다.
<head>
<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>
</head>
# <body> 안에 oncontextmenu="return false" onselectstart="return false" ondragstart="return false"를 추가한다.
<.txt 다운로드>
참고
728x90
반응형
'Information' 카테고리의 다른 글
Tistory。제목(Title) 이미지로 변경 (0) | 2017.05.19 |
---|---|
Info。Windows Oracle - OraDb11g_home1 제거 (0) | 2017.05.12 |
Info。사용 중인 폴더 삭제 (0) | 2017.04.30 |
Info。Eclipse 단축키 (0) | 2017.04.27 |
Info。Visual Studio 2010 단축키 (0) | 2017.04.27 |