JavaScript 参考手册
Textarea readOnly 属性
设置文本区域为只读
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <script> function displayResult() { document.getElementById("myTextarea").readOnly = true; } </script> </head> <body> <textarea id="myTextarea" cols="20"> 在蜜蜂教程,你可以学多很多编程的基础知识,包括 HTML, XML, SQL, ASP, 和 PHP 等各种前端内容。 </textarea> <br> <button type="button" onclick="displayResult()">设置 textarea 为只读</button> </body> </html>
运行结果:
点击运行 »