<input type="number" name="num" id="num" value="" />
Copy the code
Change the format of the input field to number to pop up the numeric keypad
There is also one that can call the nine grid numeric keypad:
<input type="number" pattern="\d*"/>
Copy the code