有一个网页
文本框1
文本框2
如何用键盘的方向键(向下)把在文本框1的光标移动到文本框2上,然后反之(向上)从2挪动到1。
怎么写这个函数用什么事件谢谢!!!!!!!!!!!!!!!!!!!
------解决方案--------------------
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>newpage</title>
<script>
function aaa(n){
if(n==1&&event.keyCode==39){
t2.focus();
}
if(n==2&&event.keyCode==37){
t1.focus();
}
}
</script>
</head>
<body>
<input type=text id=t1 name=t1 value="" onkeydown="aaa(1)">
<input type=text id=t2 name=t2 value="" onkeydown="aaa(2)">
</body>
</html>