JavaScript の replace 関数では一致する文字列をすべて置換することはできないため、String クラスにメソッドを追加する必要があります。コードは次のとおりです。
String.prototype.replaceAll = function(reallyDo、replaceWith、ignoreCase) {
If (!RegExp.prototype.isPrototypeOf(reallyDo)) {
return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replaceWith);
} else {
return this.replace(reallyDo, replaceWith);
}
}