标签:图片 保存 show bsp play 函数 code src hid
Function.prototype.before = function(beforefn) { // 保存原函数的引用 var self = this; // 返回包含了原函数和新函数的代理函数 return function() { // 执行新函数,修正this beforefn.apply(this, arguments); // 执行原函数 return self.apply(this, arguments); }; }; Function.prototype.after = function (afterfn) { var self = this; return function () { // 先调用 调用的函数,在调用afterfn // 调用这个函数的也是一个函数 var ret = self.apply(this, arguments); afterfn.apply(this, arguments); return ret; }; }; var func = function () { console.log(2); }; // 每次使用之前都要这么写一遍 function init(fn) { fn = fn.before(function () { console.log(1); }) .after(function () { console.log(3); }); return fn; } func = init(func); func();
标签:图片 保存 show bsp play 函数 code src hid
原文地址:https://www.cnblogs.com/tujw/p/10502724.html