js方法对象的参数可选

<script type="text/livescript">
window.onload
=function()
{
test(
1,2);
}
function test(a,b,c)
{
if(c)
{
alert(a
+b);
}
else
{
alert(c);
}
}
</script>
如果不输入c为null undefined
posted @ 2011-11-14 16:31  Rookier  阅读(356)  评论(0编辑  收藏  举报