码迷,mamicode.com
首页 > 其他好文 > 详细

包装函数,面向切面的函数实现;

时间:2014-12-07 21:35:55      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   sp   on   div   log   

//面向切面的js实现;
function warp(slef, func){
   return function(){
        var _arguments = arguments;
        var next = function (){
            var argus = arguments.length ? arguments : _arguments;
            return self.apply(null,argus);
        };
        var argus = [].slice.call(arguments);
        var length = func.length;
        argus = length < 2 ? [] : argus.silce(0, length-1);
        argus.push(next);
        return func.apply(null, argus);
   }
}
function _alert(){
    alert(1)
}
_alert = warp(_alert, function(){next}{
    alert(‘log‘);
    next();
});
_alert();

 

包装函数,面向切面的函数实现;

标签:style   blog   io   ar   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/clearfix/p/4149899.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!