function callback(){
alert(我是回调函数,要传给work函数了')
}
function work(func){
alert('接受到了回调函数,在下面执行')
func()
}
work(callback)