본문 바로가기
기타/Tistory

[Tistory] 글 수정 단축키 등록

by haejang 2021. 1. 4.
728x90
728x90

www.mvapple.com/235

 

티스토리 본문 수정 단축키

# 일부 상황에서는 적용되지 않는 팁입니다. # 이런 방법도 있다라고 알아주시길.. 티스토리의 경우 기본적으로 일부 단축키를 지원합니다. 이외에도 스킨을 통해 추가 단축키를 지원하기도 하

www.mvapple.com

<script>
	var key = new Array();
	key['m'] = "/admin/entry/post/?id=" + location.pathname.split('/')[1];
			
	function getKey(keyStroke) {
		if ((event.srcElement.tagName != 'INPUT') && (event.srcElement.tagName != 'TEXTAREA')) {
			isNetscape = (document.layers);
			eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;
			which = String.fromCharCode(eventChooser).toLowerCase();
			for (var i in key)
				if (which == i) window.location = key[i];
		}
	}
	document.onkeypress = getKey;
</script>
728x90
728x90

댓글