标签:javascrip func function code rip fun 使用 script hello
回调:就是将一个函数作为参数传递给另外一个函数,在另外一个函数里面使用函数
示例如下:
function testParent(str){ str() } ; function testSon(){ console.log("Hello") } ; testParent(testSon);//Hello
标签:javascrip func function code rip fun 使用 script hello
原文地址:https://www.cnblogs.com/nailc/p/9186755.html