“número de entrada maxlength” Respostas de código

Inteiro de entrada html e positivo

<input type="number" min="0" step="1" />
DevPedrada

número de entrada maxlength

<form method="post">
      <label for="myNumber">My Number:</label>
      <input type="number" maxlength="9" required
      oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);" >
     <br><br>
      <input type="submit" value="Submit">
</form>
Shadow

maneira simples de fazer um campo de texto para aceitar números apenas com o número máximo de comprimento 13 dígitos e min 10

<input name="phoneNumber"
    oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
    type = "number"
    maxlength = "10"
 />
Abdulhakim Zeinu

comprimento máximo de entrada

<input maxlength="10" />
Chris PA

Como limitar o tipo de comprimento máximo de entrada

<input name="somename"
    oninput="javascript: if (this.value.length > this.maxLength) this.value = this.value.slice(0, this.maxLength);"
    type = "number"
    maxlength = "6"
 />
Bangis1219

Número do tipo de entrada maxlength

<input type="text" pattern="\d*" maxlength="4">
Frantic Flatworm

Respostas semelhantes a “número de entrada maxlength”

Perguntas semelhantes a “número de entrada maxlength”

Procure respostas de código populares por idioma

Procurar outros idiomas de código