//JavaScript实现回车键切换输入框焦点$(function () {$('input:text:first').focus();//直接定位到当前页面的第一个文本框var $inp = $('input:text');//所有文本框$inp.bind('keydown&……