简单教程
提交运行
代码编辑器:
<script> function setResult(){ document.getElementById("pwd").readOnly=true; } </script> <form> 密码: <input type="password" id="pwd"> </form> <button type="button" onclick="setResult()">设置只读</button>
运行结果: