묻고답하기
XE에는 단축키 기능이 없나요?
2010.04.17 14:43
<script language="JavaScript">
// 핫키 함수설정
function movePage() {
var EventStatus = event.srcElement.tagName;
if(EventStatus!='INPUT'EventStatus!='TEXTAREA') {
// 홈페이지 메인으로 이동. 키값 [H,h]
if (event.keyCode=='72') location.href="http://홈페이지 주소";
if (event.keyCode=='104') location.href="http://홈페이지 주소";
// 페이지 1로 이동. 키값 [B,b]
if (event.keyCode=='66'+
'+
') location.href="http://페이지 1주소";
if (event.keyCode=='98'+
') location.href="http://페이지 1주소";
// 페이지 2로 이동. 키값 [S,s]
if (event.keyCode=='83') location.href="http://페이지 2주소";
if (event.keyCode=='115') location.href="http://페이지 2주소";
// 페이지 3으로 이동. 키값 [M,m]
if (event.keyCode=='77') location.href="http://페이지 3주소";
if (event.keyCode=='109') location.href="http://페이지 3주소";
// 페이지 4로 이동. 키값 [F,f]
if (event.keyCode=='70') location.href="http://페이지 4주소";
if (event.keyCode=='102') location.href="http://페이지 4주소";
}
}
document.onkeypress=movePage;
</script>
이런 스크립트를 받았는데, 이게 적용이 안되더라구요;;
ZB4 게시판에서 본 기능인데, XE에선 사용 안된다거나..?
아니면 저 스크립트에 문제가 있나요?
해결되었습니다.
따로 애드온이 있었네요 ㅠ