2014-02-09 45 views
1
中添加'br'

我正在爲我的移動應用項目使用backbone.js。我的問題是如何在段落中添加'br'?這是我的代碼。Javascript - 如何在段落

<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. 
+0

斯普利特'。 '加入'
' – elclanrs

+0

@elclanrs - 這可能會有點冒險,因爲他可能最終不應該在'
'之內。例如:'0.7'會變成'0
7'' – techfoobar

+0

是的,只是給了一個小費,在希望OP會嘗試一些東西,並張貼代碼 – elclanrs

回答

0

您可以使用正則表達式在JavaScript中添加一行在每句話之後都要打破

期間後跟一個大寫字母的搜索參數是/\.(?=[A-Z])/g

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