zoukankan      html  css  js  c++  java
  • js 第二节 动态函数 arguments json

    <!DOCTYPE html>
    
    <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
        <meta charset="utf-8" />
        <title></title>
    </head>
    <body>
        <script type="text/javascript">
    
            //js 里面的函数 没有重载一说  但可以通过 arguments实现重载
            function argument() {
                for (var i = 0; i < arguments.length; i++) {
    
                    console.log(arguments[i]);//a, b
                }
    
                switch (arguments.length) {
                    case 0: fun1(); break;
                    case 1: fun2('a'); break;
                    case 2: fun3(1, 2); break;
                    default: fun1(); break;
    
                }
    
            }
    
    
            function fun1() {
            }
            function fun2(num) {
                alert(num);
            }
    
            function fun3(n1, n2) {
                alert(n1 + n2);
            }
    
    
            //动态函数
            function abc() {
                var obj = document.getElementById("fun").value;
    
    
                var fun1 = new Function(obj); //Function  大写
                fun1();
    
            }

             </script>
        <textarea style="200px;height:200px;" id="fun">
            var num =12 ;
            alert(
    typeof num);
           
    var num ="12" ;
            alert(
    typeof num);
       
    </textarea>
        <input type="button" value="单击" onclick="abc()" />
        <input type="button" value="argu" onclick="argument('a','b')" />
    </body>
    </html>

    //json
            var obj = {
                a: "zhangsan",
                b: "alert(1)",
                "c": function () { alert('hello js') } //有点像匿名函数


            };
            alert(typeof obj.c());// undefined
            alert(obj.c());//  hello  js

  • 相关阅读:
    (转载)教你在PHP中使用全局变量
    (转载)遍历memcache中已缓存的key
    (转载)PHP_Memcache函数详解
    PHP去除空白字符
    (转载)用PHP正则表达式清除字符串的空白
    (转载)PHP静态方法
    (转载)PHP 动态生成表格
    (转载)PHP strtotime函数详解
    (转载)URL与URI的区别
    ldap集成confluence
  • 原文地址:https://www.cnblogs.com/xh0626/p/4862958.html
Copyright © 2011-2022 走看看