gpt4 book ai didi

javascript - 使用 jquery 设置 date_select

转载 作者:太空宇宙 更新时间:2023-11-04 15:30:14 24 4
gpt4 key购买 nike

我的表单中有此字段:

<div class="field">
<%= f.label :date %><br>
<%= f.date_select :date,{order: [:day, :month, :year]}, class: "datepicker task_date" %>
</div>

如果我的表单已提交并再次打开表单,则在 date_select 中选择之前输入的日期

现在我写了一些jquery来删除该值:

$('.task_date').val('');

但现在我希望在提交表单后,date_select 选择当前时间。

$('.task_date').datepicker("defaultDate", new Date() );

我已经有了这个,但不起作用,有人有想法吗?

感谢您的帮助。

最佳答案

更新:

这对我有用。

//Get current date
var d = new Date();
var month = d.getMonth()+1;
var day = d.getDate();

//Set date back to current date
$("#task_date_3i.datepicker.task_date").val(day);
$("#task_date_2i.datepicker.task_date").val(month);
$("#task_date_1i.datepicker.task_date").val(year);

关于javascript - 使用 jquery 设置 date_select,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44846389/

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