JavaScript 回调函数
Posted 大雄是个好青年
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript 回调函数相关的知识,希望对你有一定的参考价值。
回调:就是将一个函数作为参数传递给另外一个函数,在另外一个函数里面使用函数
示例如下:
function testParent(str){ str() } ; function testSon(){ console.log("Hello") } ; testParent(testSon);//Hello
以上是关于JavaScript 回调函数的主要内容,如果未能解决你的问题,请参考以下文章