在一个input框,希望正则验证输入的值只是正整数
How to make the input box only input positive integers with regular expressions? - PHP Chinese website Q&A - How to make the input box only input positive integers with regular expressions? - PHP Chinese website Q&A
Take a look around and learn.
<input type="text" pattern="^[1-9]\d*">
How to make the input box only input positive integers with regular expressions? - PHP Chinese website Q&A - How to make the input box only input positive integers with regular expressions? - PHP Chinese website Q&A
Take a look around and learn.