How can I limit possible inputs in a HTML5 “number” element?

前端 未结 26 2911
感动是毒
感动是毒 2020-11-22 05:12

For element, maxlength is not working. How can I restrict the maxlength for that number element?

26条回答
  •  我寻月下人不归
    2020-11-22 05:15

    HTML Input

     
    

    jQuery

     $(".minutesInput").on('keyup keypress blur change', function(e) {
    
        if($(this).val() > 120){
          $(this).val('120');
          return false;
        }
    
      });
    

提交回复
热议问题