代码错在那里?
<!DOCTYPE HTML>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>函数</title>
<script type="text/javascript">
function compare(a,b){
//定义函数
if(a>b){
return a;
}
else if(a==b){
return '一样大';
}
else{
return a;
}
}
document.write(" 5 和 4 的较大值是:"+"compare"+"<br>");
document.write(" 6 和 3 的较大值是:"+"compare" );
</script>
</head>
<body>
</body>
</html>
以上是我的代码,为什么浏览器是空白的?