为什么这个函数无效啊
<html>
<head>
<meta http-equiv="Content-Type" content="text/html" charset="utf-8">
<title>开始学习js</title>
<script type="text/javascript">
function total(){
var message=confirm("现在开始接受提问:");
if(message==true){
var question=prompt("你喜欢什么东西?");
if(quesiton!=null){
document.write("好的,谢谢参与!");
}else{
alter("没有输入,请重新输入!");
}
else{
document.write("好的,尊重你的选择!");
}
}
</script>
</head>
<body>
<form>
<input type="button" value="点击我,输入你想说的话" onclick="total()"/>
</form>
</body>
</html>