1. 程式人生 > >JQ設定input框只能輸入數字並限制個數

JQ設定input框只能輸入數字並限制個數

<input type="text" name="CreatorName" id="CreatorName" value="" maxlength='4'>

//給input設定只能輸入數字,如果是非數字會自動刪掉

$("#CreatorName").keyup(function(){
    $(this).val($(this).val().replace( /[^0-9]/g,''));
}).bind("paste",function(){
    $(this).val($(this).val().replace( /[^0-9]/g,''));
})
//限制輸入4個數  可以在input標籤中新增 maxlength='4' 屬性即可限制