柯里化函数思想:一个JS预先处理思想
var obj = {name:"张三"};
function fn () {
console.log(this)
}
window.setTimeout(fn,0);