7.2 enter键实现tab键功能.htm
来自「一些javascript的小例子希望对初学者有更好的帮助」· HTM 代码 · 共 27 行
HTM
27 行
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>标题页</title>
<script language="javascript">
function changeFocus()
{
if(event.keyCode==13)
event.keyCode=9;
}
</script>
</head>
<body>
<table id="mytbl" width="300" height="50" border="0" cellspacing="2" cellpadding="0" bgcolor="#FFb609">
<tr>
<td> <input type=text id="txt1" onkeydown="changeFocus()" /></td>
<td> <input type=text id="txt2" onkeydown="changeFocus()" /></td>
</tr>
<tr>
<td> <input type=text id="txt3" onkeydown="changeFocus()" /></td>
<td> <input type=text id="txt4" onkeydown="changeFocus()" /></td>
</tr>
</table>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?