gpt4 book ai didi

jQuery datepicker - 如何使用 API 更改月份?

转载 作者:行者123 更新时间:2023-12-01 08:16:32 26 4
gpt4 key购买 nike

我有一个 jquery 日期选择器设置。我已经对此进行了自定义,以便在 datepicker div 内创建一个自定义菜单,其中包含一些月份,如下所示:

    <div class="custom_menu">
<div class="month">January 2012</div>
<div class="month">February 2012</div>
<div class="month">March 2012</div>
</div>

我想要做的是,当用户单击某个月份时,我希望日期选择器更新该月份的 View ,例如一些伪代码

$('.month').live('click', function(){

var newmonth = $(this).text(); //get the month in a suitable format

$('#current_datpicker').update('month', newmonth); //update the datepicker to show this month

});

我可以做这样的事情吗,查看 API 文档没有显示任何内容...

编辑

我面临的问题是,当页面上有超过 1 个日期选择器实例时,如何获取#current_datepicker(即正确的日期选择器 ID)?当前日期选择器触发器输入 ID 是否存储在某处?

最佳答案

$('#current_datpicker').datepicker("setDate", newmonth + 'm');

source

尽管 $(this).text() 不会只提供月份,但您需要删除年份:

var newmonth = $(this).text().split(" ")[0];

关于jQuery datepicker - 如何使用 API 更改月份?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10316746/

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