如何用值填充文本输入?我正在尝试:

<input id="curso" maxlength="150" name="curso" size="40" type="text"
    value="window.location.href.substring(91))" />

但这不起作用。

最佳答案

<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>

您不能从任意HTML属性中执行JavaScript。只有<script>元素和事件处理程序可以包含JavaScript,因此请添加用于设置值的<script>

您还需要设置 defaultValue 属性,以便任何form reset将该值重置为所需值。

07-27 13:45