Home Web Front-end JS Tutorial The value range of the JS getMonth() date function is 0-11_time and date

The value range of the JS getMonth() date function is 0-11_time and date

May 16, 2016 pm 06:34 PM
js date function

After I select the month list item, I get the year value and month value, and calculate the date value of the 1st of the month and the date value of the last day of the month.

The correct code is as follows:

Copy the code The code is as follows:

< script language="javascript">
function selDate(y, m)
{
//Output the string of the 1st of the month
document.form1.startDT.value=y "-" m " -1";
//Calculate the year (y) and month value (m) of the next month
if(m==12)
{
y ;
m=1;
}
else
{
m ;
}
//Generate the Date value for the 1st of the next month
var dt=new Date(y, m-1, 1); //Month value 0--11
//One day difference = 86400000, convert the 1st of the next month into a numerical value, and then subtract, we get the Date value of the last day of the previous month
var n=Date. parse(dt);
n -= 86400000;
var dt1=new Date(n);
//Output the last day of the month date string
document.form1.stopDT.value=dt1. getYear() "-" (dt1.getMonth() 1) "-" dt1.getDate();
}
</script>

Starting I will "var dt =new Date(y, m-1, 1);" is written as "var dt=new Date(y, m, 1);". The last sentence "dt1.getMonth()" does not add 1. As you can imagine, the result is "2010-2-28", but the output is "2010-1-28", and the output of "2010-1-31" is "2010-0-31".

I felt confused at first. After trying more, I found the error pattern and found that the month value range is "0-11" instead of "1-12".

I hope this article will remind me next time I don’t use JS for a while.
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to use JS and Baidu Maps to implement map pan function How to use JS and Baidu Maps to implement map pan function Nov 21, 2023 am 10:00 AM

How to use JS and Baidu Maps to implement map pan function

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS Dec 17, 2023 pm 06:55 PM

Essential tools for stock analysis: Learn the steps to draw candle charts with PHP and JS

Recommended: Excellent JS open source face detection and recognition project Recommended: Excellent JS open source face detection and recognition project Apr 03, 2024 am 11:55 AM

Recommended: Excellent JS open source face detection and recognition project

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts Dec 18, 2023 pm 03:39 PM

PHP and JS Development Tips: Master the Method of Drawing Stock Candle Charts

How to create a stock candlestick chart using PHP and JS How to create a stock candlestick chart using PHP and JS Dec 17, 2023 am 08:08 AM

How to create a stock candlestick chart using PHP and JS

How to use JS and Baidu Maps to implement map polygon drawing function How to use JS and Baidu Maps to implement map polygon drawing function Nov 21, 2023 am 10:53 AM

How to use JS and Baidu Maps to implement map polygon drawing function

How to use JS and Baidu Map to implement map click event processing function How to use JS and Baidu Map to implement map click event processing function Nov 21, 2023 am 11:11 AM

How to use JS and Baidu Map to implement map click event processing function

How to use JS and Baidu Maps to implement map heat map function How to use JS and Baidu Maps to implement map heat map function Nov 21, 2023 am 09:33 AM

How to use JS and Baidu Maps to implement map heat map function

See all articles