Javascript - 如何在段落中添加“br”

时间:2014-02-09 05:47:44

标签: javascript backbone.js

我正在将backbone.js用于我的移动应用项目。我的问题是如何在段落中添加'br'?这是我的代码。

<p><%= product.get('description') %></p>

数据库中的数据

The COOLPIX S620 combines beauty and brains. 
It features the worlds fastest start up in just 0.7 seconds.

我想要的是这样的

The COOLPIX S620 combines beauty and brains. 

It features the worlds fastest start up in just 0.7 seconds.

不是这个

The COOLPIX S620 combines beauty and brains. It features the worlds fastest start up in just 0.7 seconds.

1 个答案:

答案 0 :(得分:0)

您可以在javascript中使用正则表达式在每个句子后添加换行符。

大写字母后跟大写字母的搜索参数为/\.(?=[A-Z])/g

description.replace(/\.(?=[A-Z])/g, '<br />');