主要想知道,以下代码,如何实现跳转的,没整明白?哪位高手给讲讲
Function.prototype.bind = function (bindObj, args) { var _self = this; return function () { return _self.apply(bindObj, [].concat(args)) } }; F