我的Javascript应用程序中有一个字符串,如下所示
var myMessage = 'Thats the first line<br /> thats the second line<br /> thats the third line.';
现在我尝试将所有<br />
替换为\n
,我尝试过此命令:
var messageFormatted = myMessage.replace('<br />', ' ');
但在 messageFormatted 中仍有<br />
个。我现在的问题是我做错了什么?