gpt4 book ai didi

jquery - 使用 jQuery 将日期插入 INPUT 字段

转载 作者:行者123 更新时间:2023-12-03 22:46:50 25 4
gpt4 key购买 nike

我有 4 个输入字段,分别表示月、日、小时、分钟。

<input type="text" id="month" name="month" value="" />
<input type="text" id="day" name="day" value="" />
<input type="text" id="hour" name="hour" value="" />
<input type="text" id="minute" name="minute" value="" />

我正在尝试使用 JS 获取当前时间并使用 jQuery 插入到每个字段中。

你能帮我制定正确的代码来完成这个任务吗?

最佳答案

$(document).ready(function() {
var now = new Date();
$("#month").val(now.getMonth() + 1); //Months in JS start from 0
$("#day").val(now.getDate());
$("#hour").val(now.getHours());
$("#minute").val(now.getMinutes());
});

查看此MDN page有关 Date 对象的更多信息。

关于jquery - 使用 jQuery 将日期插入 INPUT 字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7026585/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com