标签:bsp type tle else script charset title 通过 meta
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
</body>
</html>
<script>
x=prompt("请输入姓名","")
y=prompt("请输入考试成绩“,”")
z="恭喜你"
a=",满分通过!"
b="你很优秀,继续保持!"
c="成绩良好"
d="就差一点点,下次一定要至少及格!"
e="你是笨蛋吗?"
if(y==100){
alert(z+x+a)
}
else if(y>=80&&y<100){
alert(x+b)
}
else if(y>=60&&y<80){
alert(x+c)
}
else if(y>=50&&y<60){
alert(x+d)
}
else if(y<50){
alert(x+e)
}
</script>
标签:bsp type tle else script charset title 通过 meta
原文地址:http://www.cnblogs.com/sglq/p/7220271.html