如何在用戶單擊按鈕後獲取jQuery datepicker的值。 我發現這個How to get date, month, year in jQuery UI datepicker?,但我需要它在用戶點擊按鈕時完成,而不是在用戶選擇日期時的事件。按鈕點擊獲取日期,月份,年份jquery datepicker的值
CODE:
//FOR DATE PICKER
$(function() {
$('.dateRange').datepicker({
dateFormat: 'mm-dd-yy',
changeMonth: true,
changeYear: true,
yearRange: "1940: +nn"
});
});
//When the button is click get the values of selected month,date,year
function testDateRange() {
var date = $(this).datepicker('getDate');
alert(date);
}
我嘗試這樣
var x = $('#MainContent_startDate').val();
它例如輸出2016年2月23日,但我需要的輸出
Month: 2
Date: 23
Year: 2016
只是把代碼中點擊按鈕 – guradio