慕婉清8311323
2017-03-24 13:53
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数传参</title>
<script type="text/JavaScript">
function add3(x,y,z)
{
sum = x + y +z;
document.write(x+"、"+y+"、"+z+"和:"+sum+"<br/>");
}
document.write(add3(5,8,3));
document.write(add3(7,1,4));
document.write(add3("sss",123,"725672385098365"))
</script>
</head>
<body>
</body>
</html>
5、8、3和:16
undefined7、1、4和:12
undefinedsss、123、725672385098365和:sss123725672385098365
undefined
第一个document.write(x+"、"+y+"、"+z+"和:"+sum+"<br/>");中的x+"、"+y+"、"+z+"和:"+sum+"<br/>"没有定义过,所以输出undefined, x,y,z是方法需要的参数,但不是实际声明过的参数,是调用函数时需要传进去的,
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题
回答 1
回答 2