- function bind(func:Function, target:Object):Function{
- return function(){
- arguments.unshift(this);
- func.apply(target, arguments);
- };
- };
參考來源:
Function.prototype.bind
FLASH - Can I extend Function's prototype in ActionScript?
function bind(func:Function, target:Object):Function{ return function(){ arguments.unshift(this); func.apply(target, arguments); }; };
0 回應:
張貼留言