prompt中,如果要判断是否输入怎么办?以下是代码
如果不输入内容,prompt接收的值并不是null。
<html>
<head>
<title>无标题文档</title>
<script type="text/javascript">
function rec(){
var score=prompt("请输入你的分数");
if(score!=null){
if(score>=98)
document.write("你很棒!");
else if(score>=75)
document.write("不错");
else if(score>=60)
document.write("要jiayou");
else
document.write("要努力");
}
else
alert("输入内容为空!!!");//判断无效
}
</script>
</head>
<body>
<input name="button" type="button"onClick="rec()"
value="点击我,对成绩做评价" />
</body>
</html>