반응형
<script>
var key = new Array();
key['w'] = "/manage/newpost";
key['e'] = "/manage";
key['r'] = "/";
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>
위를 스킨에 추가하면 된다.
w = 글쓰기
e = 설정
r = 새로고침
m을 누르면 수정이 가능하게 만들수 있긴 하지만.. 자바스크립트를 아직 잘 몰라서 내 블로그 밖에 적용을 못하겠다..
/manage/newpost/[게시글 번호]?type=post&returnURL=[자신의 블로그 주소]/[게시글 번호]
returnURL은document.location.href를 하면 된다.
게시글 번호를 불러오는 것을 어떻게 불러올지 생각을 해봐야겠다..
반응형
'기타_ > 알쓸신잡' 카테고리의 다른 글
[알쓸신잡] 긴급재난문자는 어떻게 오는걸까? (0) | 2020.06.29 |
---|---|
[알쓸신잡] 새로운 화폐 비트코인? BitCoin! (0) | 2020.06.29 |
[알쓸신잡] Agile..? (애자일) (0) | 2020.06.20 |
[알쓸신잡] 소프트웨어 개발 방법론 (0) | 2020.06.20 |
[알쓸신잡] 오픈소스(Open Source) 소개, 정리 (0) | 2020.06.17 |
댓글