天天看點

使用者在textarea輸入送出給後端,在另一個頁面分段落展示。

主要功能:

使用者在textarea輸入送出給後端,在另一個頁面分段落展示。有回車、換行的進行相應的操作。

注意:this.productxc.pro_content 這個是我從後端拿的textarea的文本,需要的進行相應的修改

document.getElementById(“wordspl”) 是你要在什麼地方展示這個文本,需要的進行修改相應的修改

其他部分不需要改

var newString = this.productxc.pro_content.projectintroduction.replace(/\n/g, '[email protected]').replace(/\r/g, '_#');
				
            newString = newString.replace(/_#[email protected]/g, '<br/>');//IE7-8
            newString = newString.replace(/[email protected]/g, '<br/>');//IE9、FF、chrome
            newString = newString.replace(/\s/g, '&nbsp;');//空格處理
            
            document.getElementById("wordspl").innerHTML = newString;