可以通过以下几个步骤完成:
<input type="hidden" id="datetime" name="datetime" value="">
var currentDate = new Date();
var year = currentDate.getFullYear();
var month = ("0" + (currentDate.getMonth() + 1)).slice(-2);
var day = ("0" + currentDate.getDate()).slice(-2);
var hours = ("0" + currentDate.getHours()).slice(-2);
var minutes = ("0" + currentDate.getMinutes()).slice(-2);
var seconds = ("0" + currentDate.getSeconds()).slice(-2);
var datetimeValue = year + "-" + month + "-" + day + " " + hours + ":" + minutes + ":" + seconds;
document.getElementById("datetime").value = datetimeValue;
这样,隐藏的输入字段的value属性就会被设置为当前的日期和时间值,可以在后台或其他地方使用该值。
这种方法适用于需要将当前日期和时间传递给后台处理,或者在表单提交时需要记录提交的时间等场景。
腾讯云相关产品和产品介绍链接地址:
请注意,以上产品和链接仅为示例,不代表广告或推销意图。在实际使用时,请根据具体需求选择合适的产品和服务。
领取专属 10元无门槛券
手把手带您无忧上云