高哒哒
2020-04-16 23:32
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec()
{
var score; //score变量,用来存储用户输入的成绩值。
score =prompt();
if(isNaN(score))
{
alert("请输入数字");
}
else if(score<=0 || score>100)
{
alert("成绩是0-100,请重新输入");
}
else if(score>80)
{
alert("牛逼");
}
else if(score>60)
{
alert("可以");
}
else
{
alert("是个人才");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec(){
var score; //score变量,用来存储用户输入的成绩值。
score = prompt("请输入你的成绩") ;
if(score!=null) {
if(score>=90)
{
document.write("你很棒!");
}
else if(score>=75)
{
document.write("不错吆!");
}
else if(score>=60)
{
document.write("要加油!");
}
else
{
document.write("要努力了!");
}
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec(){
var score; //score变量,用来存储用户输入的成绩值。
score =prompt("请输入你的成绩:");
if(score>=90)
{
document.write("你很棒!");
}
else if(score>=75)
{
document.write("不错吆!");
}
else if(score>=60)
{
document.write("要加油!");
}
else
{
document.write("要努力了!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
为什么呢,看提示就知道被你的判断给拦下了。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>prompt</title>
<script type="text/javascript">
function rec() {
var score; //score变量,用来存储用户输入的成绩值。
score = prompt();
if (score != null && score != "") {
if (isNaN(score)) {
alert("请输入数字");
}
else if (score <= 0 || score > 100) {
alert("成绩是0-100,请重新输入");
}
else if (score > 80) {
alert("牛逼");
}
else if (score > 60) {
alert("可以");
}
else {
alert("是个人才");
}
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
JavaScript入门篇
739818 学习 · 9566 问题
相似问题