Table of contents

     

     

     

     

    티스토리를 사용하다보면, 글쓰기 및 관리자 페이지를 들어가기가 어려운 스킨들이 있습니다.

     

    이거는 스킨마다 좀 다른데요.

     

    누군가 만든 스킨을 변경하기는 다소 부담스러운 분들도 있을겁니다.

     

    그래서 저는 html을 수정해서 단축키를 활용합니다.

     

    아래는 하나의 예시입니다.

     

    원하는 페이지와 단축키를 연결시키시면, 사용하는데 훨씬 편리합니다.

     

    <script type="text/javascript">
        var key = new Array();
    
        key['w'] = "/manage/newpost/?type=post";  // w키를 누르면 글쓰기로 간다
        key['a'] = "/manage";  
    
        key['h'] = "#";                  // h키를 누르면 화면이 맨 위로 이동한다.
    
    
        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>