1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<script>
7
function displayResult() {
8
document.getElementById("myTextarea").readOnly = true;
9
}
10
</script>
11
</head>
12
<body>
13
<textarea id="myTextarea" cols="20">
14
在蜜蜂教程,你可以学多很多编程的基础知识,包括 HTML, XML, SQL, ASP, 和 PHP 等各种前端内容。
15
</textarea>
16
<br>
17
<button type="button" onclick="displayResult()">设置 textarea 为只读</button>
18
</body>
19
</html>