function a(func){
setTimeout(function(func){
console.log('a')
console.log(typeof(func))
func()
}, 1000)
}
a(b)
为什么这个func是undefined,而下面的可以
setTimeout(function(){
慕桂英546537
相关分类