ページが読み込まれるときにjqueryの月ピッカーのデフォルトの月と年を設定する必要があります。jquery monthpickerのデフォルトの月と年を設定する方法
以下は私のコードです。現在、月のピッカーテキストボックスは読み込み時に空です。
$(document).ready(function() {
$('#monthPicker').datepicker({
changeMonth: true,
changeYear: true,
showButtonPanel: true,
showButtonPanel: true,
dateFormat: 'MM yy',
onClose: function(dateText, inst) {
var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
$(this).datepicker('setDate', new Date(year, month, 1));
}
});
});
また、カレンダーから日付を削除する必要があります。ちょうど年と月の選択オプションを表示する必要があります。
これは役に立ちますか? http://stackoverflow.com/questions/40490589/how-to-set-the-default-month-and-the-year-of-jquery-monthpicker – Wikiti
@Wikiti、それはあまり役に立たないでしょう。あなたのコメントはこの非常に疑問を指しています。 –
申し訳ありませんが、私はこれを書いています:http://stackoverflow.com/questions/3829033/jquery-ui-datepicker-default-date私のせいです! – Wikiti