摘要: Function.prototype.bindAsEventListener=function(object){var __method=this;return function(event){__method.call(object,event||window.event);}}解构一下//这是给Function原型增加一个bind方法,该方法挂一个参数--强调的说。Function.prototype.bindAsEventListener=function(object){...}//在Function原型上增加prototype,则所有function()都能继续到这个方法。例如fu 阅读全文
posted @ 2009-08-18 16:04 ljlxyf 阅读(293) 评论(0) 推荐(0) 编辑