我想在 showButtonPanal 中添加自定义按钮,用于清除或重置用户在 jquery DatePicker 的日期范围框中选择的日期
我的脚本就像
$(function() {
var fromDate = $("#fromDateId2").datepicker();
var toDate = $("#toDateId2").datepicker();
$('#fromDateId, #toDateId')
.datepicker({
showOn : "both",
buttonImage : "<%=request.getContextPath()%>/tp/web/console/include/DatePickerJquery/DatePicker/date.png",
buttonImageOnly : true,
showButtonPanel: true,
beforeShow : customRange,
dateFormat : "<%=DateFormatUtil.getDateFormat(true).replaceAll("yyyy", "yy")%>",
firstDay : 1,
changeFirstDay : true
});
});