js arguments 用法

<script>
function a()
{
alert(arguments[0]);
}
a("bb");
</script>
原文地址:https://www.cnblogs.com/kevinge/p/2219007.html