陪你做好前端设计!
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>素材8网教程(study.sucai8.cn)</title> </head> <body> 姓名: <input type="text" id="myText"> <p>点击按钮设置文本域只读。</p> <p><strong>提示:</strong> 要查看效果,请尝试在点击按钮前后向文本域中输入信息。</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { document.getElementById("myText").readOnly = "true"; } </script> </body> </html>
运行结果