你搜一艘以前有人问过, 就是用回车更换焦点.

解决方案 »

  1.   

    下面的代码可以实现你说的功能,但是好像单选框不支持,你在自己想想。<html><head>
    <meta http-equiv="Content-type" content="text/html; charset=gb2312">
    <title></title>
    <style type="text/css">
    td,p,li,select,input,textarea {font-size:12px}
    </style>
    <script language="JavaScript">
    <!--
    function aa(){
    if (event.keyCode==13)
    event.keyCode=9;
    }
    </script>
    </head>
    <body bgcolor=#ffffff topmargin=5 marginheight=5 onkeydown="aa()">
    <center>
    <form name="">
    <input type=text name="" size=12>
    <br><input type=text name="" size=12>
    <br><select><option>1111
    <option>2222
    <option>3333
    <option>4444</select>
    <br><input type="radio" name="">555
    <br><input type="checkbox" name="">666
    <br><input type=text name="" size=12>
    <br><input type=text name="" size=12>
    <br><input type=text name="" size=12>
    </form>
    </center>
    </body></html>