Biorąc pod uwagę tę funkcję:
function Repeater(template) {
var repeater = {
markup: template,
replace: function(pattern, value) {
this.markup = this.markup.replace(pattern, value);
}
};
return repeater;
};
Jak dokonać this.markup.replace()
wymiany na całym świecie? Oto problem. Jeśli używam go w ten sposób:
alert(new Repeater("$TEST_ONE $TEST_ONE").replace("$TEST_ONE", "foobar").markup);
Wartość alertu to „foobar $ TEST_ONE”.
Jeśli zmienię Repeater
na następujące, nic nie zostanie zastąpione w Chrome:
function Repeater(template) {
var repeater = {
markup: template,
replace: function(pattern, value) {
this.markup = this.markup.replace(new RegExp(pattern, "gm"), value);
}
};
return repeater;
};
... a alert jest $TEST_ONE $TEST_ONE
.