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 日历,它运行正常。但是,初始显示格式是 Sun, Mon, Tue ... Sat,我想更改为 Mon, Tue, ... Sun。
虽然我已经修改了站点内所有位置的所有“星期日”、“星期日”、“苏”,并且日历的标题运行良好,但是日期块的排列仍然好像星期天是在开始一样。 .
实际上,我还需要做什么才能纠正它?非常感谢。
(请注意 4 月 1 日为星期日,应位于最后一栏)
您将在此处的文档中看到您可以在第一天设置选项
$( ".selector" ).datepicker({ firstDay: 1 });
周日为 0,周一为 1
干杯
put this code in your jquery datepicker function where you define defaults dayNamesMin:[ 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa', 'Su'] if not then try this one dayNamesShort:[ 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat','Sun']