以下のスクリプトでページ上のいくつかの単語を変更したいと思います。私はそれを修正する方法がわかりません...誰かが助けることができますか?
http://jsfiddle.net/cip691/yUMS7/
var dict = {
"not": " NOT ",
"is not": " IS NOT ",
"like": " likeeee ",
"Like": "lllike",
"job": "JOB"
},
terms = [],
term;
for (term in dict) { terms.push(term);
var search = new RegExp('\\b(' + terms.join('|') + ')\\b', 'g');
};
// now for every text node:
textNode.data = textNode.data.replace(search, function(full, match) {
return dict[match] || match;
});