zoukankan      html  css  js  c++  java
  • JS获取当年当月最后一天日期

    <html xmlns="http://www.w3.org/1999/xhtml" > 
    <meta charset="UTF-8"> 
    <head> 
    <title>获取当年当月最后一天日期</title> 
    <script language="javascript"> 
    function getLastDay(){ 
      var year = document.getElementById('year').value;
      var month = document.getElementById('month').value;
      var new_year = year; //取当前的年份 
      var new_month = month++;//取下一个月的第一天,方便计算(最后一天不固定) 
      if(month>12){//如果当前大于12月,则年份转到下一年 
        new_month -=12; //月份减 
        new_year++; //年份增 
      } 
      var new_date = new Date(new_year,new_month,1); //取当年当月中的第一天 
      return (new Date(new_date.getTime()-1000*60*60*24)).getDate();//获取当月最后一天日期 
    } 
    </script> 
    <body> 
    year:<input id="year" value="" type="text">
    <br />
    mont:<input id="month" value="" type="text">
    <br />
    <input id="Button1" type="button" value="最后一天" onClick="alert(getLastDay())" /> 
    </body> 
    </html>
    

      

  • 相关阅读:
    mysql_config 问题
    软考倒计时3天
    软考倒计时5天
    Pdf 解密后复制文字乱码
    软考倒计时7天:题目书中的易混点
    应急储备和管理储备
    软考倒计时9天:100个主要知识点
    软考倒计时10天
    软考倒计时15天
    软考倒计时18天
  • 原文地址:https://www.cnblogs.com/mracale/p/8351646.html
Copyright © 2011-2022 走看看