07 2015 档案

摘要:Function.prototype.before = function(beforefn) { var _self = this; return function() { beforefn.apply(this, arguments); return _self.apply(this,... 阅读全文
posted @ 2015-07-27 23:13 gongxiao