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.
私はjsDatepickを使用しています。最小日付を今日の日付として設定する必要があります。これにはオプションがありますか?
これは、JsDatePick のコードを簡単に変更することで実現できます。完全なjsファイルの671行目あたりです
if ( ! this.oConfiguration.limitToToday){
を取り出すだけ!
すなわち
if (this.oConfiguration.limitToday){
選択した日付を取得するたびに、日付を比較する関数を起動します..
ではない?