date.setMonth()是JavaScript中的内置函数,用于将月份设置为使用Date()构造函数创建的日期对象。
用法:
DateObj.setMonth(month_Value);
DateObj是使用Date()构造函数创建的有效Date对象,在其中我们要设置月份。month的值从0到11,因为一年中从1月到12月的月份总数是12。1的值是0, 2月1日,以此类推,直到12月11日。
参数:这里的参数month_Value是要在使用Date()构造函数创建的日期中设置的月份值。
返回值:它返回由setMonth()函数设置的新的即更新的月份。
以下示例程序旨在说明setMonth()函数:
<script>
// Here a date has been assigned
// while creating Date object
var dateobj = new Date('October 13, 1996 05:35:32');
// new month of January is being set in above Date
// Object with the help of setMonth() function
dateobj.setMonth(0);
// new month from above Date Object is
// being extracted using getMonth()
var B = dateobj.getMonth();
// Printing new month
document.write(B);
</script>
输出:
0
错误和异常
- 示例1:如果在Date()构造函数中创建日期对象时我们没有给出任何月份,则setMonth()函数仍将能够在创建的日期对象中设置新的月份。
<script> // Here month has not been assigned // while creating Date object var dateobj = new Date('1996, 05:35:32'); // new month of 2 is being set in above Date // Object with the help of setMonth() function dateobj.setMonth(2); // new month from above Date Object is // being extracted using getMonth() var B = dateobj.getMonth(); // Printing new month document.write(B); </script>
输出:
2
- 示例2:如果在Date()构造函数中未提供任何参数,则setMonth()函数仍可以设置月份,但年份,日期等仍为当前值。
<script> // Here nothing has been assigned // while creating Date object var dateobj = new Date(); // new month of 11 is being set in above Date // Object with the help of setMonth() function dateobj.setMonth(11); // Month from above Date Object is // being extracted using getMonth() var B = dateobj.getMonth(); // date from above Date Object is // being extracted using getDate() var C = dateobj.getDate(); // year from above Date Object is // being extracted using getFullYear() var D = dateobj.getFullYear(); // Printing new month document.write(B + "<br>"); // Printing current date document.write(C + "<br>"); // Printing current year document.write(D); </script>
输出:
11 1 2018
这里11是12月的新月,1是当前日期,而2018是当前年份。
- 示例3:如果将月15的值作为setMonth()函数的参数给出,则它将3设置为月,因为月的范围是0到11,因此(15%12 = 3)。
<script> // Here date has been assigned // while creating Date object var dateobj = new Date('October 13, 1996 05:35:32'); // new month of 15 is being set in above Date // Object with the help of setMonth() function dateobj.setMonth(15); // month from above Date Object is // being extracted using getMonth() var B = dateobj.getMonth(); // year from above Date Object is // being extracted using getFullYear() var C = dateobj.getFullYear(); // Printing new month document.write(B + "<br>"); // Printing new year document.write(C); </script>
输出:
Here 3 is the new month of April and year becomes 1997 from 1996 because month range is form 0 to 11 i.e, total 12 and we set new month as 3 which increase year by one to 1997 from 1996 and month becomes 3.
支持的浏览器:JavaScript date.setMonth()函数支持的浏览器如下:
- 谷歌浏览器
- IE浏览器
- 火狐浏览器
- Opera
- 苹果浏览器
相关用法
- Javascript Math.pow( )用法及代码示例
- Javascript Array some()用法及代码示例
- Javascript Number()用法及代码示例
- Javascript Symbol.for()用法及代码示例
- Javascript toExponential()用法及代码示例
- Javascript toString()用法及代码示例
- Javascript Math.abs( )用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | date.setMonth() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。