function getData(callback){ setTimeout(function(){ var name = '张三'; callback(name) },1000); } getData(function(aaa){ console.log(aaa) })