怎样实现在文本框中按回车键,光标跳到下一个文本框,而不是提交?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎样实现在文本框中按回车键,光标跳到下一个文本框,而不是提交?相关的知识,希望对你有一定的参考价值。
怎样实现在文本框中按回车键,光标跳到下一个文本框,而不是提交?
参考技术A 上面的都是错的,把我的代码拷过去改一下就行了.<body>
<script>
function a()
if(event.keyCode==13)
event.cancelBubble=true;
event.returnValue=false;
document.form1.elements(1).focus();
document.onkeypress=a;
</script>
<form name="form1">
<input type="text" >
<input type="text">
<input type="submit">
</form>
</body> 参考技术B <input type=text name=username onkeydown="form1.password.focus()">本回答被提问者采纳 参考技术C 楼上的不行,因为会按下所有键都会转到下一个文本框,应该判断按下什么键盘了:
<input type=text name=text1 onkeydown="call Text1_onKeypress()">
<SCRIPT language=vbscript>
Sub Text1_onKeypress()
If window.event.keycode=13 then '回车键的keycode等于13
text2.focus
End If
End Sub
</SCRIPT> 参考技术D <input
type=text
name=username
onkeydown="form1.password.focus()"> 第5个回答 2005-12-06 按tab键呀
以上是关于怎样实现在文本框中按回车键,光标跳到下一个文本框,而不是提交?的主要内容,如果未能解决你的问题,请参考以下文章
当我们从文本框中按 Enter 键时,在单个 jQuery 方法中处理多个操作