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

09-回调函数案例

时间:2017-03-19 13:24:41      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:doc   char   rip   规则   无法   log   head   回调   st3   

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
<script>
    //什么情况下,使用回调函数?
    //回调函数一般是用于定义一个规则来使用的。
    //规则的传递只能通过函数实现。通过变量无法达成。所以我们需要传递规则的时候必须使用回调函数。
    console.log(fn(10,5,test1));
    console.log(fn(10,5,test2));
    console.log(fn(10,5,test3));
    console.log(fn(10,5,test4));


    function fn(num1,num2,demo){
        return demo(num1,num2);
    }

    //定义四个规则:加减乘除
    function test1(a,b){
        return a+b;
    }
    function test2(a,b){
        return a-b;
    }
    function test3(a,b){
        return a*b;
    }
    function test4(a,b){
        return a/b;
    }


</script>
</body>
</html>

  

09-回调函数案例

标签:doc   char   rip   规则   无法   log   head   回调   st3   

原文地址:http://www.cnblogs.com/sj1988/p/6579929.html

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