<script type="text/javascript">
// 핫키 함수.
function movePage(e) { // ★
var event = e || window.event; // ★
var EventStatus = window.event ? window.event.srcElement.tagName : e.target.tagName; // ★
if(EventStatus!='INPUT'&&EventStatus!='TEXTAREA') {
if (event.keyCode=='81') location.href="_"; //Q
if (event.keyCode=='87') location.href="_"; //W
if (event.keyCode=='69') location.href="_"; //E
if (event.keyCode=='82') location.href="_"; //R
}
}
document.onkeydown=movePage; // ★
</script>
q:81
s:83
z:90
x:88
c:67
w:87
e:69
r:82
'marking > for-me' 카테고리의 다른 글
| 텍스트큐브 로그인메뉴 컴팩트화 CSS - 펌. (2) | 2010/02/26 |
|---|---|
| 키보드 컨트롤 자바스크립트 (0) | 2010/02/26 |
| 링크 관리페이지 (0) | 2010/02/20 |
| 카트라이더 해브 (4) | 2010/02/12 |