小tips:jquery中允许文本框只输入数字

小tips:jquery中允许文本框只输入数字:


$(document).ready(function () {
  $("#txtDigit").keypress(function (e) {
      if (e.which != 8 && e.which != 0 && (e.which < 48 || e.which > 57)) {
       $("#spnmsg").html("Only Digit ").show().fadeOut("fast");
               return false;
    }
   });
});


 

HTML
 
<input type="text"  id="txtDigit" /> <span id="spnmsg"></span> 


css
 
#spnmsg { color: red; } 

你可能感兴趣的:(jquery)