我正在尝试将自定义按钮添加到jQuery的datepicker的按钮面板中。当我应用以下代码但没有任何反应时:
$('.date-picker').datepicker( {
changeMonth: true,
changeYear: true,
showButtonPanel: true,
beforeShow: function(input) {
setTimeout(function() {
var buttonPane = $(input).datepicker("widget").find( ".ui-datepicker-buttonpane" );
var btn = $('<button class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" type="button">Clear</button>');
btn.unbind("click").bind("click", function () {
$.datepicker._clearDate( input );
});
btn.appendTo( buttonPane );
}, 1 );
} ,
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));
}
});
任何帮助将不胜感激。
答案 0 :(得分:1)
一个相关问题“如何在按钮面板中向jQuery日期选择器添加按钮?”在另一篇文章中回答。有关如何将“上一日”和“下一天”按钮添加到按钮面板的示例,请参阅How do you add buttons to a jQuery datepicker in the button panel?
答案 1 :(得分:0)
$(function(){
var pickerOpts = {
showOn: "button"
};
$("#date").datepicker(pickerOpts);
});