“Atribut readonly di HTML” Kode Jawaban

atribut readonly di html oleh javascript

document.getElementById("yourID").readOnly = true; 
Mr. Samy

Baca hanya atribut dalam html

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

Atribut readonly di 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

Jawaban yang mirip dengan “Atribut readonly di HTML”

Pertanyaan yang mirip dengan “Atribut readonly di HTML”

Lebih banyak jawaban terkait untuk “Atribut readonly di HTML” di HTML

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya