티스토리 단축키 추가하기

2021. 1. 27. 23:18Study/Programming

반응형

 

var key=new Array();
var blogname=""; //블로그이름
key['m'] ='/admin/entry/post/?id='+location.pathname.split('/')[1]+'&returnURL=https%3A%2F%2F'+blogname+'.tistory.com'+location.pathname
	
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;

 

 

 

 

반응형