1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
| Function.prototype.before = function(beforeFn) { let self = this; return function() { beforeFn.apply(this, arguments); self.apply(this, arguments); } }
Function.prototype.after = function(afterFn) { let self = this; return function() { self.apply(this, arguments); afterFn.apply(this, arguments); } }
let a = function() { alert(1); }
let _a = a;
a = function() { _a(); alert(2); }
window.onload = function() { alert(1); }
let onload = window.onload;
window.onload = function() { onload(); alert(2); }
|