HTML textarea标签禁止修改文本内容

<textarea rows="3" readonly>
文本内容
</textarea>
或者
<textarea rows="3" disabled>

文本内容</textarea>

两者展示效果不同,可分别测试查看。