我有一个jquery datepicker日历。 当我按下一个按钮时,日历弹出窗口会隐藏。 由于此错误,我无法选择下个月的日期。
这是我的代码
$( "#moviedate" ).datepicker({
showOtherMonths: true,
selectOtherMonths: true,
changeMonth: true,
});
答案 0 :(得分:0)
$(function() {
$( "#datepicker" ).datepicker({
showOtherMonths: true,
selectOtherMonths: true,
changeMonth: true,
});
});
如果您在jQuery旁边使用其他JavaScript库。您的代码应位于noConflict区域之间:
jQuery.noConflict();
(function( $ ) {
$( "#moviedate" ).datepicker({
showOtherMonths: true,
selectOtherMonths: true,
changeMonth: true,
});
})(jQuery);