我有一个点击功能,当用户注销时
$('#logout').click(function(){
// update database and tell other users that this person has logged off
});
#logout 是链接的ID(注销按钮)
该函数将处理一些 ajax/php/database 操作 + 发送套接字消息,并且很容易需要几毫秒才能完成
我可以相信 javascript/jquery 在实际返回 true 之前完成该功能(打开被点击的链接)吗?
或者有什么方法可以确保它完成它..从“return false”开始,然后只在它收到来自 php 的 OK 时才返回 true?