【easyui】numberbox限制输入数字和位数/textbox限制输入纯数字

numberbox:

percision位数,min最小值默认为null,设置0

textbox:

 $("#idName").textbox('textbox').bind('keyup', function(e){
 $("#idName").textbox('setValue', $(this).val().replace(/\D/g,''));

});

 

你可能感兴趣的:(前端)