JavaScript 参考手册
Input Text disabled 属性
查看文本域是否被禁用
源代码:
点击运行 »
<form> 姓:<input id="fname"><br> 名: <input id="lname"><br> </form> <p>点击按钮禁用第一个文本域。</p> <button onclick="disableElement()">禁用文本域</button> <script> function disableElement() { document.getElementById("fname").disabled = true; } </script>
运行结果:
点击运行 »