<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
function daxiao(a,b)
{
if(a>b)
{
return a;
}
else if(a<b){
return b;
}
else {
return "好得多"
}
}
document.write(" 5 和 4 的较大值是:"+daxiao(5,4)+"<br>");
document.write(" 6 和 3 的较大值是:"+daxiao(6,3);
</script>
</head>
<body>
</body>
</html>
你的这一行document.write(" 6 和 3 的较大值是:"+daxiao(6,3); 少了一个括号")"
//定义函数
var a,b;
function bj(a,b)
{
//函数体,判断两个整数比较的三种情况
if(a>b){
return a;
}else if(a<b){
return b;
}else{
return a,b;
}
}
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+ bj(5,4)+"<br>");
document.write(" 6 和 3 的较大值是:"+ bj(6,3));
最后一行: document.write(" 6 和 3 的较大值是: "+daxiao(6,3));