Is there a minlength validation attribute in HTML5?

前端 未结 17 1479
日久生厌
日久生厌 2020-11-22 17:10

It seems the minlength attribute for an field doesn\'t work.

Is there any other attribute in HTML5 with the help of which I

17条回答
  •  孤街浪徒
    2020-11-22 17:34

    The minLength attribute (unlike maxLength) does not exist natively in HTML5. However, there a some ways to validate a field if it contains less than x characters.

    An example is given using jQuery at this link: http://docs.jquery.com/Plugins/Validation/Methods/minlength

    
        
            
            
            
    
            
        
    
        
            

提交回复
热议问题