美文网首页
js回调函数

js回调函数

作者: 想做一个画家 | 来源:发表于2017-12-06 22:51 被阅读15次

    传递函数作为回调
    很容易把一个函数作为参数传递。

    function fn(arg1, arg2, callback){
        var num = Math.ceil(Math.random() * (arg1 - arg2) + arg2);
        callback(num);  //传递结果
    }
    
    fn(10, 20, function(num){
       console.log("Callback called! Num: " + num); 
    });    //结果为10和20之间的随机数
    

    相关文章

      网友评论

          本文标题:js回调函数

          本文链接:https://www.haomeiwen.com/subject/zkebbxtx.html