我想在鼠标悬停时延迟执行。
这是我到目前为止所拥有的
eventMouseover : function(calEvent, $event) {
var $dialogContent = $("#event_show");
resetForm($dialogContent);
$($dialogContent).dialog({
modal:true,
title: "Details of "+calEvent.title,
body: "Name of Patitent",
buttons : {
cancel : function() {
$dialogContent.dialog("destroy");
$dialogContent.hide();
}
}
}).show();
},
当用户在执行后指向几秒钟时,我该如何延迟。