如何使用值填充文本输入?我正在尝试这个:
<input id="curso" maxlength="150" name="curso" size="40" type="text"
value="window.location.href.substring(91))" />
但这不起作用。
答案 0 :(得分:8)
<input id="curso" maxlength="150" name="curso" size="40" type="text">
<script>
document.getElementById("curso").value =
document.getElementById("curso").defaultValue = window.location.href.substring(91);
</script>
您无法在任意DOM属性中执行JavaScript。只有<script>
个元素和事件处理程序可以包含JavaScript,因此请添加一个设置值的<script>
。
您还需要设置defaultValue
属性,以便任何form reset将值重置为所需的值。