当我的sql server SP返回带有新行字符的字符串并且在我的jsp中我将它传递给脚本函数并在警告框中显示它时抛出:
function sample(notes){
alert(notes);
}
Error:
script1015: unterminated string constant
我可以在SP中处理它
REPLACE(BDT.Notes , CHAR(13) + CHAR(10), ''<br/>'' ) as Notes
但是有没有办法在脚本中处理它?</ p>
答案 0 :(得分:5)
尝试以下
someText = someText.replace(/(\r\n|\n|\r)/gm,"");
请参阅链接http://www.textfixer.com/tutorials/javascript-line-breaks.php