JavaScript의 바꾸기 기능은 일치하는 모든 문자열을 바꿀 수 없으므로 String 클래스에 메서드를 추가해야 합니다.
String.prototype.replaceAll = function(reallyDo, replacementWith,ignoreCase) {
If (!RegExp.prototype.isPrototypeOf(reallyDo)) {
return this.replace(new RegExp(reallyDo, (ignoreCase ? "gi": "g")), replacementWith);
} 다른 {
return this.replace(reallyDo, replacementWith);
}
}