为什么输入小于100的,显示都是你还未成年
<script type="text/JavaScript">
function rec(){
var age=prompt("请输入您的年龄:");
if(age>100){
document.write("千年老乌龟!");
}
else if(age>=18){
document.write("你已经成年了!");
}
else if(age>=0){
document.write("你还未成年!");
}
else if(age<0){
document.write("你还在娘胎里呢");
}
else if(age == null){
document.write("欢迎再来!");
}
else{
document.write("你必须输入年龄");
}
}
</script>
rec();