Is there a minlength validation attribute in HTML5?

前端 未结 17 1751
日久生厌
日久生厌 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条回答
  •  萌比男神i
    2020-11-22 17:13

    I notice that sometimes in Chrome when autofill is on and the fields are field by the autofill browser build in method, it bypasses the minlength validation rules, so in this case you will have to disable autofill by the following attribute:

    autocomplete="off"

    
    

提交回复
热议问题