我需要在 jQuery UI Datepicker 中添加一个自定义按钮,当用户单击该按钮时,设置一个输入值(文本字符串)并关闭弹出窗口。这可能吗?
小提琴示例:http: //jsfiddle.net/7Wygg/
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">Custom</button>');
btn.unbind("click")
.bind("click", function () {
//$.datepicker._clearDate(input);
alert('custom text');
});
btn.appendTo(buttonPane);
}, 1);
}
谢谢你。