HTML5 input number min max not working with required

后端 未结 3 771
花落未央
花落未央 2020-12-11 17:04

I would like to force the user to type their age. I also would like to make sure they only enter between 18-99. Is that possible with HTML5 attributes like

3条回答
  •  不思量自难忘°
    2020-12-11 17:36

    Your code works fine. Check this fiddle (I'm using latest chrome)

    My only concern you is your pattern="[1-8][0-9]" can simple use this

    pattern="[0-9]{2}"
    

提交回复
热议问题