大家好,我有一个登录页面,其中包含两个输入用户名和密码以及一个按钮。我想在密码字段填写第一个字符后在该按钮上放一个类。我该怎么做,谢谢。如果可以仅使用 css 来做到这一点,那就太棒了,或者使用一个小脚本在该按钮上添加一个类。
<form>
Username <input type="text" name="first" id="first" /><br/><br/>
Password <input type="text" name="last" id="last" />
<br/>
</form>
<input class="crbl" type="submit" name="last" id="last" value="login button" />
css
/*Normal State*/
.crbl{
margin-top:10px;
border:1px solid #555555;
border-radius:5px;
}
/*after password field has one character filled in state*/
.class{
???
}
小提琴: