“entrada html não editável” Respostas de código

entrada html não editável

<input readonly type="text" name="country" value="Norway" >
Asif Patel

JS tornando a entrada não típica

//Use readonly

<input id="myInput" readonly>
SweFalcon

Somente atributo de leitura em html

<!-- Using readonly attribute is use to prevent changing of input value. -->
Example:
<input type="text" name="username" value="ankur" readonly>
Ankur

atributo readonly em html

<!--The readonly attribute means that the value of input field is not editable
-->
<form action="">
<label for="country">Language:</label> 
	<input type="text" id="language" name="language" value="English" readonly>
	<input type="submit" value="Submit">
</form>
Mr. Samy

Respostas semelhantes a “entrada html não editável”

Perguntas semelhantes a “entrada html não editável”

Mais respostas relacionadas para “entrada html não editável” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código