以下是實現方法:
. 代碼如下:
<script src="http://yige.org/static/js/j.js"></script>
jQuery(function () {
jQuery('input:text:first').focus();//直接定位到當前頁面的第一個文本框
var $inp = jQuery('input:text');//所有文本框
$inp.bind('keydown', function (e) {
var key = e.which;
if (key == 13) {
e.preventDefault();
var nxtIdx = $inp.index(this) + 1;
jQuery(":input:text:eq(" + nxtIdx + ")").focus();
}
});
});