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

年、月、日

时间:2016-08-24 08:48:52      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>

<body>
</body>
</html>
<script>
var N =prompt(请输入年)
if(N!=null){
    var b =isNaN(N)
    if(b==false)
    {
        if(N>0&&N<10000&&N%1==0)
        {
        var Y =prompt(请输入月)
        if(Y!=null)
        {
            var b1=isNaN(Y)
            if(b1==false)
            {
            if(Y>0&&Y<13&&Y%1==0)
            {
                var R=prompt(请输入日)
                if(R!=null)
                {
                var f =isNaN(R)
                if(f==false)
                {
                    if(R>0&&R<32&&R%1==0)
                    {
                        if(Y==1||Y==3||Y==5||Y==7||Y==8||Y==10||Y==12)
                        {
                        alert(N++Y++R+)
                        }
                    }
                    if(R>0&&R<31&&R%1==0)
                     {
                         if(Y==4||Y==6||Y==9||Y==11)
                        {
                        alert(N++Y++R+)
                        }
                     }
                        else(alert(输入有误))
                    }
                 if(Y==2)
                     {if(N%4==0&&N%100!==0||N%400==0)
                        {
                        alert(N++Y++R+)    
                        }
                        else if(R>0&&R<29&&R%1==0)
                            {
                            alert(N++Y++R+)        
                            }
                else(alert(输入有误))
                }
                }
            }
            else(alert(输入有误))
            }
            else(alert(输入有误))
            }
            }
        else(alert(输入有误))
        }
    else(alert(输入有误))
    }
    
    
</script>

 

年、月、日

标签:

原文地址:http://www.cnblogs.com/dandan1224/p/5801496.html

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