Is there a minlength validation attribute in HTML5?

前端 未结 17 1745
日久生厌
日久生厌 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:15

    Yes, there it is. It's like maxlength. W3.org documentation: http://www.w3.org/TR/html5/forms.html#attr-fe-minlength

    In case minlength doesn't work, use the pattern attribute as mentioned by @Pumbaa80 for the input tag.

    For textarea: For setting max; use maxlength and for min go to this link.

    You will find here both for max and min.

提交回复
热议问题