0
如何突出日期選擇器中的特定日期BOLD
?我有日期陣列var datesArray = new Array();
我知道我需要使用beforeShowDay:
方法,但我無法弄清楚它的工作原理。如何突出日期選擇器中的特定日期
這是我的函數:
$(function() {
$("#datepicker").datepicker({
dateFormat: 'yy-mm-dd',
onSelect: function(dateText, inst) {
dateSelected(dateText, tid) // run my function on click
}
});
});
的[我如何使用jQuery日期選擇器與befereshowday兩種不同類型的特別突出可能重複日期?(http://stackoverflow.com/questions/1534172/how-can-i-use-jquery-datepicker-to-highlight-with-befereshowday-two-different-ki) – j08691