码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript判断闰年

时间:2015-03-19 23:43:45      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

<html>
<head>
   <meta http-equiv="content-type" content="text/html;charset=gb2312">
   <title>判断闰年_www.jbxue.com</title>
   <script type="text/javascript" languge="javascript">
    //能被4整除且不能被100整除
    //或
    //能被100整除且能被400整除
    function isLeapYear(){
     var pYear=window.myForm.theYear.value;
     if(!isNaN(parseInt(pYear))){
      if((pYear%4==0 && pYear%100!=0)||(pYear%100==0 && pYear%400==0)){
       window.alert(pYear+"是闰年!");
      }else{
         window.alert(pYear+"不是闰年!");
      }
     }else{
      window.alert("请输入正确年份!");
     }
       }
   </script>
</head>
<body>
   <form action="#" name="myForm" method="post">
    <p>请输入要判断闰年的年份:<p/>
    <input name="theYear" type="text">
    <input name="select" type="button" value="计算" onClick="isLeapYear()">
   </form>
</body>
</html>
本文原始链接:http://www.jbxue.com/article/js/19568.html

JavaScript判断闰年

标签:

原文地址:http://www.cnblogs.com/love1226/p/4352045.html

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