複数選択したいので、jqueryのdatepickerを操作してみます。ここで、選択した日のスタイルを変更したいと思います。たとえば、テキストを緑色にします。スタイルを変更する方法がわかりません。可能性はありますか?
助けてくれてありがとう!
これが私のコードです:
$(".testpicker").datepicker({
numberOfMonths: 2,
showButtonPanel: false,
onSelect: function(test,object){
console.log(object.id);
//#####My first tries######//:
$("#"+object.id).css('color','green');
$(this).css('background-color','white');
//###########//
if(~$.inArray(test,dates))
{
console.log(test)
}
else
{
dates.push(test);
}
console.log(dates);
console.log(object);
//prevents closing
$(this).data('datepicker').inline = true;
},
onClose: function() {
$(this).data('datepicker').inline = false;
}
});