在jQuery UI日历小部件中突出显示日期

我有一个jQuery UI日历小部件,它显示在我的Web应用程序中。 我希望能够突出显示用户执行操作的当月的特定日期。 有没有办法做到这一点?

HTML:

jQuery:

 $('#datepicker').datepicker({ beforeShowDay: function(date) { if (date == myDate) { return [true, 'css-class', 'ToolTip']; } } }); 

你需要为css-class编写一个CSS css-class 。 有关更多信息,请单击此处

使用此代码

 //Set DatePicker to April 25,2014 $('#dateselector').datepicker("setDate", new Date(2014,4,25) ); 

有关详细信息,请参阅以下链接:

  1. http://api.jqueryui.com/datepicker/#method-setDate

  2. https://forum.jquery.com/topic/datepicker-simple-highlighting-of-specific-days-who-can-help-source-inside

希望能帮助到你。