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 の日付ピッカーで土曜日と日曜日のみを選択できるようにしたいと思います。datepicker スクリプトに何を追加すればよいですか?
$(function() { $('#txtDate1').datepicker({ beforeShowDay: function(dt) { return [dt.getDay() == 0 || dt.getDay() == 6, ""]; } }); });