斯蒂芬大帝
this的指向按以下优先级:函数的bind函数指定的对象,例如 var f = (function(){console.log(this)}).bind("abc"); //this === "abc"使用call和apply调用函数时指定的对象,例如 (function(){console.log(this)}).call("abc"); //this === abc函数的宿主对象,例如 var obj = {f: function(){console.log(this)}}; //this === objwindow/global