当前位置:编程学习 > JS >>

js方法重载

 

js 中,一切都是对象,function也一样。 关于function 写法 ,可以,将最后一个参数作为方法体。或者

var add = function(num,num1) 

 

function add(num,num1) 

}

每个方法中都有一个隐式的arguments参数

 

<html>

 <head>

 </head>

 <body>

<script type="text/javascript">

  new function test() 

  {   

   if (arguments.length == 1)   

   {

    alert("here");

    alert(arguments[0]);   

   }   

   else if (arguments.length == 2)

       {

    alert(arguments[0]);

    alert(arguments[1]);

       }   

   else if (arguments.length == 3)   

   {   

   } 

  }

test(67);

test(10, 20);

</script>

 </body>

</html>

本文出自 “笨鸟先飞” 博客

补充:web前端 , JavaScript ,
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,