如何提醒所選日期名稱?例如「星期一」。jQuery:datepicker,提醒所選日期名稱
所以,當你挑選7日2011年6月它會提醒 「星期二」
<script>
$(function() {
$("#date").datepicker({
dateFormat: 'dd/mm/yy',
onSelect: function(dateText, inst) {
// how can i grab the day name of the day, example "Monday" and alert it out?
// alert(?);
}
});
});
</script>
注意: 'date' **必須是一個JavaScript **'Date'對象**,它由datepicker的'getDate()'提供。儘管如此,如果你的日期格式不是來自* datepicker,那可能就不那麼清楚了。如果你傳遞的只是字符串 - 你會得到像'b.getMonth不是函數'等有趣的錯誤... –