不知为何不弹出窗口

来源:4-3 多重判断(if..else嵌套语句)

慕用4584880

2017-11-16 21:52

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>if...else</title>
<script type="text/JavaScript">
function zz(){
var myage;
    myage =prompt("你的年龄")
if(myage<=44)
  {document.write("青年");}
else if(myage<=59) 
  {document.write("中年人");}
else if  (myage<=89)
  {document.write("老年人");}
else        
  {document.write("长寿老年人");}
else{document.write("永远十八");}
}
</script>
</head>
<body>
    <from>
        <input type="button" value="点次测试年龄段" onclick="zz()">
        </from>
</body>
</html>


写回答 关注

4回答

  • 敬仰somnr
    2018-03-18 20:05:52

    http://img.mukewang.com/5aae5605000107bc02610125.jpg

    就因为最后这个分号,使用英文的就对了

  • feng520
    2018-03-11 16:03:21

    高手这个空格怎么弄的啊?

    试了半天才发现的

  • 清水流
    2017-11-28 10:11:18
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>if</title>
    <script type="text/javascript">
    function zz(){
    var myage;
        myage =prompt("你的年龄")
    if(myage<=44)
      {document.write("青年");}
    else if(myage<=59)
      {document.write("中年人");}
    else if  (myage<=89)
      {document.write("老年人");}
    else if(myage<=99)
      {document.write("长寿老年人");}
    else
      {document.write("永远十八");}
    }
    </script>
    </head>
    <body>
    <from>
            <input type="button" value="点次测试年龄段" onclick="zz()">
    </from>
    </body>
    </html>

    else        
      {document.write("长寿老年人");}
    else{document.write("永远十八");}
    这里错了,长寿老年人这块判断还要加一个条件才可以

    else if(myage<=99)
      {document.write("长寿老年人");}


    else{document.write("永远十八");}这个最后的分号是在英文输入法的分号;,不是中文输入法的分号;

  • qq_待我强大给媳妇零食i_0
    2017-11-16 22:33:53

    <!DOCTYPE HTML>

    <html>

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

    <title>if...else</title>

    <script type="text/JavaScript">

    function qwe(){

    var myage=prompt("你的年龄");

    if(myage<=44){

    document.write("青年");

    }

    else if(myage<=59){

    document.write("中年人");

    }

    else if(myage<=89){

    document.write("老年人");

    }

    else if(myage>89){

    document.write("长寿老年人");

    }else{

    document.write("永远十八")

    }



    }

    </script>

    </head>

    <body>

        <from>

        <input type="button" value="点击测试年龄"  onclick="qwe()"/>   

        </from>

    </body>

    </html>


JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题