2012-02-27 129 views
1

我試圖顯示一個textarea的內容,包括任何換行符。用換行符顯示輸出textarea

var text = document.getElementById("textInput").value ;  
    text = text.replace(/[\n|\r\n]/g,"<br />"); 
    document.getElementById("voorwoord-voorbeeld-tekst-links").firstChild.nodeValue = text; 

的更換工作正常,但它顯示: dfsdsf < BR />,以< BR /> DF < BR /> SDF < BR />而不是休息

我該如何解決這個問題?我搜索整個網絡,但無法找到它..

+2

真的,整個網絡? ** ... ** – gdoron 2012-02-27 15:58:01

+0

@gdoron,他的書架上的整個蜘蛛網。 – Qtax 2012-02-27 16:03:47

回答

3

嘗試設置元素的innerHTML代替:

document.getElementById("voorwoord-voorbeeld-tekst-links").firstChild.innerHTML = text; 
+0

幫我一把!非常感謝! – 2012-02-28 10:18:24