标签:type 容器 javascrip 现象 function 参数 cti i++ font
js函数没有Java中的重载现象。js函数的参数是放在arguments的容器里面的。
<script type="text/javascript">
function add(){
//alert(arguments.length);
for(var i=0;i<arguments.length;i++){
alert(arguments[i]);
}
}
add(1,2,3);//
结果:3
</script>
标签:type 容器 javascrip 现象 function 参数 cti i++ font
原文地址:http://www.cnblogs.com/keyi/p/6128133.html