str.replace(/\r\n/gi, newString);要注意两点:要使用正则表达式,不能使用 str.replace("\r\n", newString);母字符串中不一定 \r\n 会同时存在,也许只有 \n,没有 \r 也是可能的。