这有个问题
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>判断语句</title>
<script type="text/javascript">
function score()
var score =confirm("及格"); //score变量存储成绩,初值为80
if(score==true)条件成立
{
document.write("很棒,成绩及格了。<br>");
}
else条件不成立
{
document.write("加油,成绩不及格。");
}
</script>
</head>
<body>
<input type="button" onClick="rec()" value="点击我,弹出确认对话框" />
</body>
</html>怎么不运行的