在jQuery datepicker插件中仅显示周末

时间:2013-06-21 01:51:20

标签: javascript jquery plugins datepicker

我希望用户只能在我的jQuery datepicker中选择星期六和星期日。我应该在datepicker脚本中添加什么内容?

1 个答案:

答案 0 :(得分:4)

$(function()
   {
   $('#txtDate1').datepicker({ beforeShowDay:
     function(dt)
     {
        return [dt.getDay() == 0 || dt.getDay() == 6, ""];
     }
   });
 });