可對函數進行以下擴充
Function.prototype.bind function(obj) {
var _this = this;
return function() {
_this.apply(obj,arguments);
}
}
用法如下
var a = function({){
var a = function({){
alert(this.title)
}.bind(document);
a();
複製程式碼
程式碼如下:
function myalert() {
this.title = 'hello world';
this.init = function() {
$("#xxx").click(this.close.bind(this));
}
this.close = function() {
alert(this.title)
}
複製程式碼
程式碼如下:
程式碼如下: 程式碼如下: 程式碼如下: 程式碼如下: 程式碼如下:var a = new myalert();
a.init();