像这样禁用它后如何使日期选择器图像可单击/启用
$("#_ctl0_MainContent_txtFromDateTime").datepicker({
showOn: "button",
buttonImage: "../images/calendar.gif",
buttonImageOnly: true,
buttonText: "Please Select Date",
onSelect: function() {
// $(this).datepicker("option", "dateFormat", "MM d yy")
$("#_ctl0_MainContent_hdnFromDateTime").val($(this).val());
}
});
$("#_ctl0_MainContent_txtFromDateTime").datepicker('disable');
如果我使用
$("#_ctl0_MainContent_txtFromDateTime").datepicker('enable');
它不起作用