码迷,mamicode.com
首页 > 其他好文 > 详细

回调函数

时间:2019-02-26 01:21:17      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:ret   add   function   必须   cti   cal   回调函数   fun   set   

<script>
function add(x,y,callback) {
// callback 就是回调函数
// var x = 10
// var y = 20
// var callback = function(a){ }
console.log(1)
setTimeout(function () {
var ret = x + y
callback(ret) //必须调用
},1000)
}
add(10,20,function (a) {
// a 就是我们得到的结果
})
</script>

回调函数

标签:ret   add   function   必须   cti   cal   回调函数   fun   set   

原文地址:https://www.cnblogs.com/lujieting/p/10434673.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!