所以我正在阅读这本书并逐字复制代码以亲自动手,我得到“对象不支持此属性或方法”。
var text = '<html><body bgcolor=blue><p>' + '<This is <b>BOLD<\/b>!<\/p><\/body><\/html>';
var tags = /[^<>]+|<(\/?)([A-Za-z]+)([^<>]*)>/g;
var a,i;
String.method('entityify', function () {
var character = {
'<': '<',
'>': '>',
'&': '&',
'"': '"'
};
return function() {
return this.replace( /[<>&"]/g , function(c) {
return character[c];
});
};
}());
while((a = tags.exec(text))) {
for (i = 0; i < a.length; i += 1) {
document.writeln(('// [' + i + '] ' + a[i]).entityify());
}
document.writeln();
}
//Output [0] <html>
//Output [1]
//Output [2] html
//Output [3]
//and so on through the loop.
我似乎无法使他们的示例起作用。
**编辑 - 我找到并添加了该功能,但仍然无法正常工作。