Answers for "¿Cómo permitir únicamente valores positivos en un <input>?"

0

¿Cómo permitir únicamente valores positivos en un <input>?

//el atributo "min=1" te ayudara a poner solo numeros positivos
<input type="number" name="dni"  min="1" >
Posted by: Guest on February-10-2021

Code answers related to "¿Cómo permitir únicamente valores positivos en un <input>?"

Browse Popular Code Answers by Language