Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用了时间选择器插件“jquery-ui-timepicker-addon.js”。如何自定义此插件,使一周的开始日期从星期一而不是星期日开始?
与自定义标准 datePicker 完全相同;设置 firstDay = 1。例如:
$( ".selector" ).datetimepicker({ firstDay: 1 });
请参阅http://api.jqueryui.com/datepicker/#option-firstDay。