Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 jquery UI 日期选择器中获取当前月份(即(今天是 2013 年 7 月 24 日),格式为 0 到 11 个月)并存储在变量中
我的变量应该包含以下结果: var presentmonth =6; 如何实现以上?
您可以使用:
var month = $("#datepicker").datepicker('getDate').getMonth();
它将返回一个介于 0-11 之间的值