我正在尝试向 jQuery 日期选择器的按钮面板添加一个自定义按钮。当我应用以下代码时,虽然没有任何反应:
$('.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));
}
});
如有任何帮助,我们将不胜感激。
相关问题“如何将按钮添加到按钮面板中的 jQuery 日期选择器?”在另一个帖子里得到了回答。有关如何将“前一天”和“后一天”按钮添加到按钮面板的示例,请参阅如何将按钮添加到按钮面板中的 jQuery 日期选择器?
$(function(){
var pickerOpts = {
showOn: "button"
};
$("#date").datepicker(pickerOpts);
});