How to limit the textarea to only hold numbers?

后端 未结 6 633
自闭症患者
自闭症患者 2021-01-18 11:12

I\'m trying to make a date textbox on my blog, and the date is only numbers. I don\'t want anybody making a mistake typing a letter. Is there any way to limit the characters

6条回答
  •  北恋
    北恋 (楼主)
    2021-01-18 11:38

    Use HTML5 input number type instead and leverage native browser validation. Thus, no JavaScript required.

    
    

    It has wide support in browsers and it's the standard and best-practice solution.

    Also on mobile and tablets the numeric key pad will appear instead.

    See demo

提交回复
热议问题