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.
Web サイトに jQuery カレンダーを適用しましたが、正常に機能します。ただ、初期表示形式が日、月、火…土で、月、火、…日と変更したい。
サイト内のすべての場所ですべての「日曜日」、「日」、「ス」を変更し、カレンダーのヘッダーはうまく機能していますが、日付ブロックの配置はまだ日曜日が始まりであるかのようです.. .
実際、それを修正するために他に何をしなければなりませんか? どうもありがとう。
(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']