//如何在返回的函数中绑定父函数的作用域this function bound () { return function () { console.log(this); }.bind(this); } bound()();