呼び出されないイベント関数を除いて機能するモバイル日付ピッカーがあります。何が問題ですか?
<script type="text/javascript">
$("#calendar").datepicker({
onSelect: function () { alert('1'); },
beforeShow: function () { alert('2'); },
beforeShowDay: function () { alert('3'); }
});
</script>
<div>
<input id="calendar" type="date"/>
</div>