复制代码 代码如下: <P> function up(){ alert("up");} <P> function down(){alert("down");} <P> function left(){ alert("left");} <P> function right(){alert("right");} <P> function jumpPage(){ <P> if(event.keyCode==37){ <P> left(); return ; <P> } <P> if(event.keyCode==38){ <P> up();return ; <P> } <P> if(event.keyCode==39){ <P> right();return ; <P> } <P> if(event.keyCode==40){ <P> down();return ; <P> } <P> document.onkeydown=jumpPage;<BR> }<BR>