码迷,mamicode.com
首页 > 其他好文 > 详细

用switch语句判断月份,打印出当前月份所在的季节

时间:2018-04-21 19:48:40      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:cas   Oday   date()   判断   switch   break   get   bre   div   

 var today=new Date();
    var abc=today.getMonth();
    switch (abc) {
        case 0:
            document.write("现在是春季");
            break;
        case 1:
            document.write("现在是春季");
            break;
        case 2:
            document.write("现在是春季");
            break;
        case 3:
            document.write("现在是夏季");
            break;
        case 4:
            document.write("现在是夏季");
            break;
        case 5:
            document.write("现在是夏季");
            break;
        case 6:
            document.write("现在是秋季");
            break;
        case 7:
            document.write("现在是秋季");
            break;
        case 8:
            document.write("现在是秋季");
            break;
        case 9:
            document.write("现在是冬季");
            break;
        case 10:
            document.write("现在是冬季");
            break;
        case 11:
            document.write("现在是冬季");
            break;
    }

  

用switch语句判断月份,打印出当前月份所在的季节

标签:cas   Oday   date()   判断   switch   break   get   bre   div   

原文地址:https://www.cnblogs.com/max-hou/p/8902346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!