gpt4 book ai didi

javascript - 在 Rails 的日期选择器中设置 minDate

转载 作者:行者123 更新时间:2023-12-02 17:04:17 27 4
gpt4 key购买 nike

我需要将 minDate 属性应用到 Rails 应用程序中的日期选择器作为今天的日期。

在_admin_controls.html.erb中

<%= f.input :end_date, wrapper: :append do %>
<div id="datepicker" class="datepicker input-group edit-left">
<%= f.text_field :end_date, :class => "datetime form-control" %>

application.js 包含

jQuery(document).on('focus', 'input.datetime', function() {
opts = {format: 'M dd, yyyy', autoclose: true};
jQuery(this).datepicker(opts);
jQuery(".datepicker").css("z-index",10000);
});

仅对 _admin_controls.html.erb 执行此操作的 JavaScript 应该是什么?

最佳答案

如果您使用 Jquery 那么您可以像这样设置日期:

// If you want to set a date then assign it to a variable or create a function and call that function directly.

var currentDate = new Date();

$("#mydate").datepicker().datepicker("setDate", new Date());

关于javascript - 在 Rails 的日期选择器中设置 minDate,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25402191/

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