我想使用 javascript 更改 html 文本框的值。我尝试了 .value 但它不起作用。然后我更改不带下划线 id 的 id 并更改值并将 id 更改回原来的一个值与原始值相同没有变化。
<input id="_item1govt_id" class=" required-entry input-text required-entry input-text required-entry" type="text" value="1" name="address[1][govt_id]" style="display: none;">
echo "<script> function setFunc".$rs['entity_id']."(obj)
{
var e = document.getElementById('_item".$rs['entity_id']."govt_id');
e.id = 'ape".$rs['entity_id']."';
e.value = obj.value;
alert(e.value);
e.id = '_item".$rs['entity_id']."govt_id';
}
</script> "