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.
月の開始日を今日に設定し、終了日を翌月に設定できますか?
例:今日は2013年1月28日ですカレンダーは2013年1月28日から2013年2月27日まで表示されます
前もって感謝します。
はい、できます:
これを行う:
$(document).ready(function(){ $("#txtDate").datepicker({ minDate: 0, maxDate: '+1M', numberOfMonths:1 }); });