jq 判断输入数字
<input id="N_source" name="N_source" type="text" value="">
$("#N_source").keyup( function(){
dsds(this);
});
function dsds(r){
if (!(/^[0-9]*$/g.test( r.value.substr(r.value.length-1,1)))) {
///非数字
$("#N_source").val($(r).val().substring(0,$(r).val().length-1));
}
else {
//数字
}
}