简单教程
提交运行
代码编辑器:
名: <input type="text" id="myText"> <p>点击按钮禁用文本域</p> <button onclick="myFunction()">禁用文本域</button> <script> function myFunction() { document.getElementById("myText").disabled = true; } </script>
运行结果: