<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>函数</title> <script type="text/javascript"> //定义函数 function su(a,b) { if(a>b){ return a } else if(a<b){ return b } else { return "相等" } } //函数体,判断两个整数比较的三种情况 su1=su(5,4) su2=su(6,3) su3=su(20,20) //调用函数,实现下面两组数中,返回较大值。 document.write(" 5 和 4 的较大值是:"+su1"<br>"); document.write(" 6 和 3 的较大值是:"+su2"<br>"); document.write(" 20 和 20值是:" +su3"的"); </script> </head> <body> </bogdy> </html>
各位大佬这是哪里错了呢?显示不出来。
谢谢各位 原来是少加个分号;
document.write(" 5 和 4 的较大值是:"+su1+"<br>");
document.write(" 6 和 3 的较大值是:"+su2+"<br>");
document.write(" 20 和 20值是:" +su3+"的");
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
//定义函数
function su(a,b)
{
if(a>b){
return a
}
else if(a<b){
return b
}
else {
return "相等"
}
}
//函数体,判断两个整数比较的三种情况
su1=su(5,4)
su2=su(6,3)
su3=su(20,20)
//调用函数,实现下面两组数中,返回较大值。
document.write(" 5 和 4 的较大值是:"+su1+"<br>");//++++++
document.write(" 6 和 3 的较大值是:"+su2+"<br>"); //++++++
document.write(" 20 和 20值是:" +su3+"的"); //+++++
</script>
</head>
<body>
</body><!--拼错-->
</html>
var su1=su(5,4)
var su2=su(6,3)
var su3=su(20,20)
你试试