函数传参的具体用法

Posted 鱼樱、、

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了函数传参的具体用法相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <script type="text/javascript">
            //参数 = js的数据类型(基本类型和引用类型)
            //数字.字符串.布尔.函数.对象.未定义.数组
            fnc(100);
            fnc(stlying);
            fnc(function() {
                alert(222);
            });
            function fnc(e) {
                if(typeof e === number && e === e) {
                    alert(e + 5)
                } else if(typeof e === string) {
                    alert(e.charAt(3))
                } else if(typeof e === function) {
                    e();
                }
            }            
            //例子
            fun(window,document);
            function fun(win,doc){
                win.onload = function(){
                    doc.body.innerHTML ="你好,js";
                }        
            }
            //return返回值
            alert(fn())  //return ==>等价于fn()==>100
            function fn(){
                return 100
            }
            //传的参数只能一一对应
        </script>
    </body>
</html>

 

以上是关于函数传参的具体用法的主要内容,如果未能解决你的问题,请参考以下文章

Linux + Qt :探讨QT直接调用JS方法传参的问题

VUE·13:事件处理之 @click用法

shell程序传参和main函数传参的区别

Linux Shell 通过传参的方式往/etc/user.conf里添加用户

shell用法

函数中传值跟传参的区别?