主要功能:
用户在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, ' ');//空格处理
document.getElementById("wordspl").innerHTML = newString;