贝小加
2015-12-07 22:57
<!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 if(score!=null)
{
document.write("要努力了!");
}
else
{
document.write("未输入成绩!");
}
}
</script>
</head>
<body>
<input name="button" type="button" onClick="rec()" value="点击我,对成绩做评价!" />
</body>
</html>
我的代码通过了,但是窗口弹不出为什么?各位大神,麻烦了。
两个错误 为输入成绩后面的分号 onClick 应该为onclick
<!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 if (score != null) { document.write("要努力了!"); } else { document.write("未输入成绩!"); } } </script> </head> <body> <input name="button" type="button" onclick="rec();" value="点击我,对成绩做评价!" /> </body> </html>
未输入成绩后面的那个分号是中文状态下的,改了应该可以
你的api写错了
JavaScript入门篇
739816 学习 · 9566 问题
相似问题