美文网首页
Javascript的 if 语句

Javascript的 if 语句

作者: 杰伊_约翰 | 来源:发表于2018-11-03 08:21 被阅读8次

    if练习1:

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title></title>
    <script type="text/javascript">
    var score = prompt('请输入成绩(0-100):');
    if (score == 100){
    alert('恭喜你得到一个房子');
    }
    else if (score >= 80 && score <= 99){
    alert('恭喜你得到一辆宝马');
    }
    else if (score >= 60 && score <= 79){
    alert('恭喜你得到一部手机');
    }
    else if (score <= 59){
    alert('扫厕所去吧');
    }
    </script>
    </head>
    <body>
    </body>
    </html>
    

    if练习2:

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <title>if练习2</title>
    <script type="text/javascript">
    /*
    * 大家都知道,男大当婚,女大当嫁。那么女方家长要嫁女儿,当然要提出一定的条件:
    * 高:180cm以上; 富:1000万以上; 帅:500以上;
    * 如果这三个条件同时满足,则:'我一定要嫁给他'
    * 如果三个条件有为真的情况,则:'嫁吧,比上不足,比下有余。'
    * 如果三个条件都不满足,则:'不嫁!'
    */
    var heght = prompt('请输入身高:');
    var fu = prompt('请输入资金:');
    var shuai = prompt('请输入颜值:');
    if (heght >= 180 && fu >= 1000000 && shuai >= 100) {
    alert('完美 嫁给他')
    }
    else if (heght >= 180 || fu >= 1000000 || shuai >= 100) {
    alert('有点瑕疵 没事 勉强嫁给他')
    }
    else if(heght < 180 && fu < 1000000 && shuai < 100){
    alert('不嫁')
    }
    </script>
    </head>
    <body>
    </body>
    </html>
    

    if练习3:

    <!DOCTYPE html>
    <html>
    <head>
    <meta charset="utf-8" />
    <title>if练习3</title>
    <script type="text/javascript">
    /*
    * 编写程序,由键盘输入三个整数分别存入变量num1、num2、num3,
    * 对他们进行排序,并且从小到大输出。
    */
    var num1 = prompt('请输入一个数字:');
    var num2 = prompt('请输入一个数字:');
    var num3 = prompt('请输入一个数字:');
    if (num1 < num2) {
    alert('num1小 num2大')
    }
    else if(num2 < num3){
    alert('num2小 num3大')
    }
    else if (num3<num1) {
    alert('num3小 num1大')
    }
    </script>
    </head>
    <body>
    </body>
    </html>
    

    相关文章

      网友评论

          本文标题:Javascript的 if 语句

          本文链接:https://www.haomeiwen.com/subject/oyahxqtx.html