1
これは実際の内容です。以下のコードでは、UIで2回のドロップダウンに値を追加しました。代わりに、「4月」Jqueryの値を設定し、同じ値の2倍を追加しました
if ($('#dk_container_selectToYear .dk_options li.dk_option_current a').text() == 2016) {
var currentdate = new Date();
var month = currentdate.getMonth();
var monthname = monthLookup[currentdate.getMonth()];
month = month + 3;
while (month <= 13) {
$('#dk_container_selectToMonth .dk_options li:nth-child(' + month + ')').css({ "display": 'none' });
var listvalue = $('#dk_container_selectToMonth .dk_options li:nth-child(' + month + ')').text();
if ($('#dk_container_selectToMonth .dk_options li.dk_option_current a').text() == listvalue) {
$('#selectToMonth').dropkick('reset');
$('#selectToMonth').dropkick('setValue', monthname);
}
month++;
}
}
$('#selectToMonth').dropkick('setValue', monthname);
の「AprilAprilは」それはそれを避けるために、他のオプションを持っているので、これではありません!!
monthLookupはどのように見えるのですか? – Coss
設定した後に 'monthname'ログをコンソールに表示した場合、何が表示されますか? –