<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
//定义函数
function compare(x,y)
{
if(x>y)
return x;
else
if(x<y)
return y;
else return "两数相等";
}
document.write(" 5 和 4 的较大值是:"+compare(5,4)+"<br>");
document.write(" 6 和 3 的较大值是:"+compare(6,3)+"<br>" );
document.write("4 和 4 的较大者是:"+compare(4,4));
</script>
</head>
<body>
</body>
</html>
if(条件语句){
如果条件为true
执行这里的语句
}else if(条件语句){
如果条件为true
执行这里的语句
} else{
否则执行这里的语句
}
if后的语句要打{},定义函数那一段改成
//定义函数
function compare(x,y)
{
if(x>y){
return x;}
else if(x<y) {
return y;}
else{ return "两数相等";}
}
红框里的分号 换成英文分号就可以运行了
下面的提交按钮旁边有个“自动运行”的复选框,勾选上它试试