Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用文本聊天进行应用程序。我想显示文本输出,但不想自定义编码整个 div,带有滚动条等。
<textarea>似乎在接受文本输入方面表现得非常好。如何禁用输入新值?
<textarea>
为了防止在 textarea 中输入,将 readonly 属性添加到它
<textarea readonly></textarea>