使用 JavaScript 字符串换行

发布于 2024-10-09 08:16:24 字数 315 浏览 8 评论 0原文

我在 javascript 中使用 \n 换行,例如: -

text = "this is a test" + "\n" + "another test";

并显示在 html 中,我使用代码

text = text.replace('\n' , '<br>');

得到的文本没有 br

,但在检查 Firebug 控制台时,我

,我得到的是换行符(\n 未显示,但创建了换行符)我如何使用 \n 或 i 放置换行符必须做一些自定义代码而不是\n

谢谢

I m breaking a line in javascript using \n for example: -

text = "this is a test" + "\n" + "another test";

and to show that in html i m using the code

text = text.replace('\n' , '<br>');

but the text i m getting is without the br

when checking in firebug console i get is with line break(\n not shown but newline created)

how can i place line breaks using \n or i have to do some custom code instead of \n

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

飞烟轻若梦 2024-10-16 08:16:24
var newText = text.replace(/\n/g , "<br>");
var newText = text.replace(/\n/g , "<br>");
下雨或天晴 2024-10-16 08:16:24

使用双引号不转义 \n

试试这个:

text = text.replace("\n" , "<br>");

use double quotes to not escape the \n

try this:

text = text.replace("\n" , "<br>");
似梦非梦 2024-10-16 08:16:24

/\r\n|[\r\n]/g <- 这是我使用的。我是一个悲观主义者..

/\r\n|[\r\n]/g <- this is what I use. I am a pessimist..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文