我在
中有这个$("#datepicker").datepicker({
showOn: "button",
buttonImage: "http://jqueryui.com/resources/demos/datepicker/images/calendar.gif",
buttonImageOnly: true,
和其他代码。我希望当我关闭datepicker时,不再显示“按钮”。
答案 0 :(得分:0)
您可以对onClose
使用datepikcer
回调。
onClose : function()
{
// code to remove the button
}
<强>的OnClose 强>
Function( String dateText, Object inst )
关闭日期选择器时调用,是否选择了日期。该函数接收所选日期作为文本(如果没有则为“”),并将datepicker实例作为参数。这指的是相关的输入字段。