0

所以我正在阅读这本书并逐字复制代码以亲自动手,我得到“对象不支持此属性或方法”。

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 = {
    '<': '&lt;',
    '>': '&gt;',
    '&': '&amp;',
    '"': '&quot;'
};

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.

我似乎无法使他们的示例起作用。

**编辑 - 我找到并添加了该功能,但仍然无法正常工作。

4

1 回答 1

1

问题是没有String.method(...)功能。如果您尝试向 String 类型添加新函数,请尝试以下操作:

String.prototype.entityify = (function () {
  var character = {
    '<':'&lt;',  '>':'&gt;',  '&':'&amp;',  '"':'&quot;'
  };
  return function() {
    return this.replace( /[<>&"]/g , function(c) {
      return character[c];
    });
  };
})();

'<foo & bar>'.entityify(); // => "&lt;foo &amp; bar&gt;"

虽然,如果您打算将这部分作为库的一部分,那么您不应该直接分配给String.prototype,而是按照此处所示的方式使用Object.defineProperty(...)

于 2012-04-18T21:13:15.103 回答