$(function() {
$('#defaultInline').datepick({
dateFormat: 'yyyy-mm-dd',
onSelect: showDate
});
function showDate(date) {
var dates2 = $('#defaultInline').datepick('getDate'); // this works
var dates3 = $.datepick.formatDate('yyyy-mm-dd',dates2) /// this give an error
alert('The date chosen is ' + dates2);
}
});
警报(dates2)有效,但日期 3 给出错误......有什么想法吗?基本上我只想从内联日历中以特定格式获取日期....现在它显示为 Tue Oct 30 2012 12:00:00 GMT+0530 (India Standard Time) 但我想要的只是 2012- 10-30 ....
我得到的错误是: TypeError: g.getFullYear is not a function