问答详情
源自:2-4 JavaScript-提问(prompt 消息对话框)

怎么弹不出对话框?

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>score</title>
  <script type="text/javascript">
  function rec(){
    var 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>

提问者:朱阿丹 2017-01-18 15:01

个回答

  • ALANXIAO2017
    2017-01-18 15:32:22
    已采纳

    http://img.mukewang.com/587f19e50001a53506400554.jpg如图,少个大括号

  • _aho
    2017-01-18 16:29:04

    rec()方法最后少了个括号”}“

  • ALANXIAO2017
    2017-01-18 15:31:35

    如图,少个大括号

  • 慕仙3064260
    2017-01-18 15:15:12

    JS最后少了一个括号