Legen Sie den HTML -Wert JavaScript fest
To change the value of an HTML attribute, use this syntax:
document.getElementById(id).attribute = new value;
to set the value:
document.getElementById("id").value = "New Value Text";
Adventurous Addax