Best way to restrict a text field to numbers only?

前端 未结 29 1661
长情又很酷
长情又很酷 2020-12-04 22:01

I\'m using the following Javascript to restrict a text field on my website to only accept numerical input, and no other letters or characters. The problem is, it REALLY reje

29条回答
  •  死守一世寂寞
    2020-12-04 22:15

    You can handle te event on html by introducing keypresshandler function

    function keypresshandler(event)
    {
         var charCode = event.keyCode;
    
         //You condition
         if (charCode == 58 ){
    
            event.preventDefault();
    
            return false;
         }        
    } 
    

提交回复
热议问题