是否可以使用Jquery 不同的对象结构来推迟点击响应?
所以我有一个点击事件触发并调用一个长时间(ish)运行的进程,延迟进程。我只想在延迟过程完成后从点击中返回,即
$('form .modalPopupSearch').click(function (e) {
//return once the dialogopen event is complete and not before!
$("#divSearching").dialog('open');
});
我想只是添加promise()
到这个可能会做到这一点:
$('form .modalPopupSearch').click(function (e) {
//return once the dialogopen event is complete and not before!
$("#divSearching").dialog('open');
}).promise();
但事实并非如此。这甚至可能吗,还是只是不能以这种方式连接?