Rumah > Artikel > hujung hadapan web > javascript日期格式如何转换成年月日
js日期格式转换的方法:1、使用“new Date()”获取当前日期;2、使用getFullYear()获取日期对应的年份,使用“getMonth()+1”获取对应月份,使用getDate()获取对应月份的日期。
本教程操作环境:windows7系统、javascript1.8.5版、Dell G3电脑。
1、获取当前日期。
<script type="text/javascript"> var d = new Date(); alert("当前日期: :" + d); </script>
这个日期不适合直接使用,需要转换成直观的时间。
2、修改后的代码:
var d = new Date(); var d2 = d.getFullYear() + "年"+ (d.getMonth() + 1) +"月"+ d.getDate() +"日"; alert("当前日期: :" + d2);
<img src="https://img.php.cn/upload/image/353/231/963/1617871135393328.png" title="1617871135393328.png" alt="QQ图片20210408092203.png">
【推荐学习:javascript视频教程】
Atas ialah kandungan terperinci javascript日期格式如何转换成年月日. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!