¿Cómo permitir únicamente valores positivos en un <input>? code example
Example: ¿Cómo permitir únicamente valores positivos en un ?
//el atributo "min=1" te ayudara a poner solo numeros positivos
<input type="number" name="dni" min="1" >
//el atributo "min=1" te ayudara a poner solo numeros positivos
<input type="number" name="dni" min="1" >