Blogger Information
Blog 2
fans 0
comment 0
visits 1512
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
JS基础入门学习
木子曈的博客
Original
868 people have browsed it

今天在课堂上学习了JS基础知识,特做以下小案例:

案例一:判断是否是闰年

 <script type="text/javascript">

    var years=;//书写年份
        if(years%4 !=0){
    alert('不是闰年!');
   } else{
    alert('是闰年!')
   }
 </script>

案例二:判断是否是世纪闰年

<script type="text/javascript">
var years=;//书写年份
     if(years%4 !=0) {
         alert('不是世纪闰年');
    } else if(years%100 !=0){
     alert('不是世纪闰年');
    }else{
     alert('是世纪闰年');
    }
 </script>

案例三:给学生的具体成绩划分等级,优秀(90-100)、良好(80-89)、良(70-79)、及格(60-69)、不及格(0-59),输出该学生的成绩是哪个阶段的。

<script type="text/javascript">
var grade=;
//书写学生分值
   if(grade>=90){

    alert('成绩优秀');

   }

   if(grade>=80){

    alert('成绩良好');

   }

   if(grade>=70){

    alert('成绩良');

   }

   if(grade>=60){

    alert('成绩及格');

   }

   if(grade>=0){

    alert('成绩不及格');

   }
</script>

第三个案例 由于水平有限只能写的比较浅显了。

Correction status:qualified

Teacher's comments:继续加油!知识积累的多了,效果就越来越完善!
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post