我正在阅读 Crockford 的 'JS: The Good Parts'。他有两个使用这个的例子,我不明白为什么在一个例子中他使用this
,而在另一个例子中他使用that
.
第一个例子:
String.method('deentify', function() {
var entity = {
quot: '"',
lt: '<',
gt: '<'
};
return function() {
return this.replace(/&([^&;]+);/g,
function (a, b) {
var r = entity[b];
return typeof r === 'string' ? r : a;
}
);
};
}());
document.writeln('<">'.deentify());
第二个例子:
Function.method('curry', function() {
var args = arguments, that = this;
return function () {
return that.apply(null, args.concat(arguments));
};
});
var add1 = add.curry(1);
document.writeln(add1(6));
为什么第一个例子可以this
直接访问?这个例子和后面的例子有什么区别?