在datepicker中单击关闭按钮时触发事件

时间:2014-04-08 03:57:13

标签: jquery calendar datepicker mouseevent

我想知道在Datepicker日历小部件中单击关闭按钮时是否还有触发事件?我想在单击关闭按钮时设置标志。

1 个答案:

答案 0 :(得分:0)

你有一个关闭jquery datepicker的事件,你可以设置你的标志

http://api.jqueryui.com/datepicker/#option-onClose

 $("selector").datepicker({
      onClose: function(selectedDate) {
       //set flag
      }
    });