我有一个字段,我希望选择其中一个输入框来更改字段的背景颜色。我的尝试是通过简单的 onfocus 操作更改输入的父级(即字段)的 html 类,但我没有看到任何反应。
我有以下内容,并仔细检查了类名。
在脚本中:
function changefield()
{
document.getElementById(this.parentNode).className = "temp_field";
}
在 html 中:
<input class="type1" type="text" size="30" onFocus="changefield()">
这感觉就像我犯了一些相当明显的初学者错误,但我已经有两个人玩它无济于事。