大佬们 就是如果为空的时候 或者输入空格的时候 怎么做判断 现在就是直接提交或者打空格会输入你还未成年
<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>
</head>
<body>
<input name="button" type="button" onclick="rec()" value="点击测试"/>
</body>