Tôi có mã mẫu này:Làm thế nào để có được ngày, tháng, năm trong jQuery UI datepicker?
<div id="calendar"></div>
$(document).ready(function() {
$('#calendar').datepicker({
dateFormat: 'yy-m-d',
inline: true,
onSelect: function(dateText, inst) {
var month = dateText.getUTCMonth();
var day = dateText.getUTCDate();
var year = dateText.getUTCFullYear();
alert(day+month+year);
}
});
});
Khi tôi chạy mã, có lỗi. Làm thế nào để có được điều này (date, month, year)
?
Có thể là tương tự như [câu hỏi này] (http://stackoverflow.com/questions/2562986/getdate-with-jquery-datepicker) – KevinIsNowOnline