我需要一个日历选择器,默认日期被选为周末日期(星期日)。需要它在jQuery或Angular JS
答案 0 :(得分:0)
初始化datepicker的值时可以使用以下函数
function getSunday(d)
{
return new Date(d.getFullYear(), d.getMonth(), d.getDate() – d.getDay() + 7);
}
资源:
Set initial value in datepicker with jquery?
How to set the initial value to ng-model when using ui-date in angularjs