使用 JavaScript 字符串换行
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用双引号不转义 \n
试试这个:
use double quotes to not escape the \n
try this:
/\r\n|[\r\n]/g <- 这是我使用的。我是一个悲观主义者..
/\r\n|[\r\n]/g <- this is what I use. I am a pessimist..