1.第一步把表單,裡面需要回車的input,或者是其他的表單按鈕給一個clsss,例如下麵的$('.cls'); 2.第二步, 把下麵的代碼複製過去,填寫完最後一個自動提交:$("#savedown").click(); 3.選中input的框的時候一定要全部選中,不然操作會不方便,給一個提示 $( ...
1.第一步把表單,裡面需要回車的input,或者是其他的表單按鈕給一個clsss,例如下麵的$('.cls');
2.第二步, 把下麵的代碼複製過去,填寫完最後一個自動提交:$("#savedown").click();
3.選中input的框的時候一定要全部選中,不然操作會不方便,給一個提示
----------------------------------------------------------------------------------------------------------------------------------------
$("input").focus(function() {
this.select();
});
-----------------------------------------------------------------------------------------------------------------------------------------
<input style="width:208px;" id="onlyshipid" class="form-control cls" type="text" onblur="clearorchangeNum()">
<input style="width:208px;" id="onlyshipid" class="form-control cls" type="text" onblur="clearorchangeNum()">
$(function(){
$("input").focus(function() {
this.select();
});
$('#goodsnameid').focus();
var $inp = $('.cls');
$inp.bind('keydown', function (e) {
var key = e.which;
if (key == 13) {
e.preventDefault();
var nxtIdx = $inp.index(this) + 1;
if($('.cls').size() == nxtIdx){
$("#savedown").click();
$(".cls:eq(" + 0 + ")").focus();
$(".cls:eq(" + 0 + ")").select();
}else{
$(".cls:eq(" + nxtIdx + ")").focus();
$(".cls:eq(" + nxtIdx + ")").select();
}
}
});
});