跳至主要內容

numberbox

chanchaw小于 1 分钟easyui

绑定keyup事件

$('#numberboxEnter').numberbox({
  inputEvents:$.extend({},$.fn.numberbox.defaults.inputEvents,{
    keyup:function(e){
      console.log(e);
      if(e.keyCode===13){
        console.log('点击了回车!');
      }
    }
  })
})

设置获取焦点

$('#auctionBrandNoGetByHand').numberbox().next('span').find('input').focus();