作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我在文本输入上附加了一个 jQuery DateTimePicker v2.4.1。我想这样做,以便当用户单击并更改选择器的月份或年份时 - 它会更新表单中的日期,因为这似乎不是插件的默认行为。
$(timepicker).datetimepicker({
format: "d M Y h:i A",
step: 15,
validateOnBlur: false, //use ValidateDateTime.js instead of jquery default
closeOnInput: true,
closeOnDateSelect: true,
onClose: function() {
var validatedDate = validateDate($(timepicker).val());
if (validatedDate != false) {
$(timepicker).val(validatedDate);
}
},
changeMonth: true,
changeYear: true,
onChangeMonth: function() {
//pop name of month into field and update calendar
var d = $(this).datetimepicker('getDate');
console.log(d + this.html());
/*
$(timepicker).datetimepicker.trigger("select.xdsoft", [d]);
*/
}
});
出现的问题是:var d = $(this).datetimepicker('getDate');
实际上并没有检索日期,只是返回 datetimepicker 元素。
如何在 js 中获取日期,或更具体地说 - 当用户单击下拉列表中的月份时,如何强制更新。
编辑:看纪录片http://xdsoft.net/jqplugins/datetimepicker/多亏了 suish,它现在看起来像这样:
onChangeMonth: function(date, $el) {
//pop name of month into field and update calendar
var str = dateTimeToString(date);
$($el).datetimepicker({ value: str });
},
简单!
最佳答案
onChangeMonth function(current_time,$input){}
onChangeYear function(current_time,$input){}
onChangeDateTime function(current_time,$input){}
根据其文档。每个 onChange 函数都将 Date 变量作为第一个参数。
onChangeMonth: function(date,$el) {
var d = date.getDate();
//d is selected date.
var m = date.getMonth() + 1; //+1 because .getMonth() returns 0-11
//m is selected month.
}
关于javascript - jQuery datetimepicker - 如何在 JavaScript 中获取日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29201624/
我是一名优秀的程序员,十分优秀!