2013-02-11 46 views
0

我正在嘗試輸出由換行符分隔的一系列滾動文本消息。在JavaScript文本輸出中輸出換行符?

我的代碼如下所示:

<script type="text/javascript" src="xbMarquee.js"></script> 

<script type="text/javascript"> 
<!-- 
//set the marquee parameters 
function init() { down_marquee.start(); } 
var down_marquee_Text = '<em>"This is a test comment. - Love from Admin /n"This is a far longer test comment which is of greater and more powerful value to the research portions of both physical, mental and citrus flavoured sciences all around the world for years to come."-Love PICKLES"</em>'; 
var down_marquee_Direction = 'down'; 
var down_marquee_Contents='<span style="white-space:nowrap;">' + down_marquee_Text + '</span>'; 
up_marquee = new xbMarquee('down_marquee', '100%', '90%', 6, 100, down_marquee_Direction, 'scroll', down_marquee_Contents); 
window.setTimeout(init, 200); 
--> 
</script></div> 

任何人可以幫助我解決它,這樣斷行顯示?我試過了我能想到的所有東西,包括標籤等等。

謝謝!

+0

換行符代表'\ n'反斜槓n,而不是'/ n' – 2013-02-11 19:44:51

+0

剛剛嘗試過改變它,但仍然不工作:(。謝謝你的幫助,但! – 2013-02-11 19:46:56

+0

那麼這不是你如何打印換行符html在任何情況下,請參閱Plynx的答案,這只是你應該知道的任何一種方式。 – 2013-02-11 19:49:10

回答

0

使用其保留空白的<pre> HTML元素。否則,請將\n替換爲<br>

+0

更改爲
工作!太好了,謝謝你們! – 2013-02-11 19:53:56