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
<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