$(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)は機能しますが、dates 3はエラーになります.....何かアイデアはありますか?基本的に、特定の形式でインラインカレンダーから日付を取得したいだけです。現在、2012年10月30日火曜日12:00:00 GMT + 0530(インド標準時)として表示されますが、必要なのは2012年だけです- 10-30...。
私が得るエラーは次のとおりです:TypeError:g.getFullYearは関数ではありません