It's me ;-)

Accept only positive number using Jquery

Có thể sử dụng Event Handling hoặc Event Helper. Tất nhiên là sử dụng Event Helper thì ngắn hơn rồi 🙂

//when key is pressed in the textbox
$("#quantity").keypress(function (e)
{
  //if the letter is not digit then display error and don't type anything
  if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57))
  {
    //display error message
    $("#errmsg").html("Digits Only").show().fadeOut("slow");
    return false;
  }
});

Mình quen viết thế này hơn:

//when key is pressed in the textbox
$("#quantity").keypress
(
    function (e) {
        //if the letter is not digit then display error and don't type anything
        if( e.which!=8 && e.which!=0 && (e.which<48 || e.which>57)) {
            //display error message
            $("#errmsg").html("Digits Only").show().fadeOut("slow");
            return false;
        }
    }
);

Nguồn: http://roshanbh.com.np/2008/04/textbox-accept-only-numbers-digits.html

4 thoughts on “Accept only positive number using Jquery

  1. trong Jquery khi viết các hàm thông thường thì phải đặt trong phần có cách nào để viết trong phần không??? ví dụ các hàm như trên

  2. Tớ thì chơi kiểu thế này
    $.fn.ForceNumericOnly = function(){
    return this.each(function(){
    $(this).keydown(function(e){
    var key = e.charCode || e.keyCode || 0;
    if(e.shiftKey){
    if(key >= 48 && key = 37 && key = 48 && key = 96 && key <= 105) ||
    key == 35 ||
    key == 36);
    })
    })
    };

    Xài: $('.textbox_selector').ForceNumericOnly();

Leave a Reply to Đỗ Nam Khánh Cancel reply

Your email address will not be published. Required fields are marked *