代码编辑器:
x
1
<form>
2
用户名:<input type="text" id="usrname"><br>
3
密码:<input type="password" id="pwd">
4
</form>
5
<p>单击下面的按钮禁用上面的密码字段</p>
6
<button onclick="disableElement()">禁用密码字段</button>
7
<script>
8
function disableElement(){
9
document.getElementById("pwd").disabled=true;
10
}
11
</script>
12