本文介绍了如何在 Javascript 中获取当前格式化日期 dd/mm/yyyy 并将其附加到输入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!
问题描述
我想将当前日期添加到隐藏的 HTML 标记中,以便可以将其发送到服务器:
I would like to add a current date to a hidden HTML tag so that it can be sent to the server:
<input type="hidden" id="DATE" name="DATE" value="WOULD_LIKE_TO_ADD_DATE_HERE">
如何将格式化的日期添加到 VALUE 属性?
How can I add a formatted date to the VALUE attribute?
推荐答案
const monthNames = ["January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"];
const dateObj = new Date();
const month = monthNames[dateObj.getMonth()];
const day = String(dateObj.getDate()).padStart(2, '0');
const year = dateObj.getFullYear();
const output = month + '
'+ day + ',' + year;
document.querySelector('.date').textContent = output;
这篇关于如何在 Javascript 中获取当前格式化日期 dd/mm/yyyy 并将其附加到输入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!