2010-11-01 02:47

[JavaScript] Function.prototype.bind

  1. Function.prototype.bind = function(target){ 
  2.    var func=this; 
  3.    return function(){ 
  4.        arguments.unshift(this); 
  5.        func.apply(target, arguments); 
  6.    }; 
  7. }; 

參考來源:
Function.prototype.bind
FLASH - Can I extend Function's prototype in ActionScript?

0 回應: