//onchange事件 $("._numberbox").numberbox({ onChange:function(newValue,oldValue) {......} )} //键盘事件 var inputs = $("#flcs_table").find(‘input:visible.easyui-numberbox‘); inputs.each(function(index){ // $(this).click(function(){ // }); $(this).focus(function(){ this.select(); }); $(this).bind("keydown",function(){ var c = window.event.keyCode; if(c==13){ if(index<inputs.length-1){ inputs[index+1].focus(); } } }); });
时间: 2024-10-14 01:09:54