标签: javascript jquery plugins datepicker
我希望用户只能在我的jQuery datepicker中选择星期六和星期日。我应该在datepicker脚本中添加什么内容?
答案 0 :(得分:4)
$(function() { $('#txtDate1').datepicker({ beforeShowDay: function(dt) { return [dt.getDay() == 0 || dt.getDay() == 6, ""]; } }); });