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.
我希望,有一个解决我的问题。但我找不到它。问题:ajax 返回带有换行符 (\n) 的数据。数据必须插入 textarea 并从 ajax 更新。
我可以在读取数据时替换 '\n' (myJsonData.replace.() ...等)。主要问题:如何为 textarea 准备数据以使用换行符以正确格式显示?
只需将其替换为可恢复的内容,例如-=br=-插入到 textarea 时,替换回\n
-=br=-
\n
textarea 中的换行没有问题,您可以按原样插入数据。但是,如果您仍然遇到特殊字符的问题 - 您可以对 JSON 数据进行编码并在插入时对其进行解码。