4

我正在尝试使用 jsfiddle 在 Douglas Crockfords J-TBP 书中执行那个非常好的去实体化示例

String.method('deentityify', function() {
    // The entity table. It maps entity names to
    // characters.
    var entity = {
        quot: '"',
        lt: '<',
        gt: '>'
    };
    // Return the deentityify method.
    return function() {
        // This is the deentityify method. It calls the string
        // replace method, looking for substrings that start
        // with '&' and end with ';'. If the characters in
        // between are in the entity table, then replace the
        // entity with the character from the table. It uses
        // a regular expression (Chapter 7).
        return this.replace(/&([^&;]+);/g, function(a, b) {
            var r = entity[b];
            return typeof r === 'string' ? r : a;
        });
    };
}());

document.writeln('&lt;&quot;&gt;'.deentityify()); // <">          
4

1 回答 1

8

此代码片段取决于method您必须事先定义的一些糖,即方法。(它在本书的早期描述过。)在线副本和它的解释在Crockford 的文章“JavaScript 中的经典继承”的“糖”部分。它看起来像这样:

Function.prototype.method = function (name, func) {
    this.prototype[name] = func;
    return this;
};

包含上述内容的 Fiddle 的更正版本位于http://jsfiddle.net/W9Ncd/

于 2012-11-15T19:52:23.310 回答