我想防止多个 ajaxcalls 但我的代码没有任何反应?
<script type="text/javascript">
var isProcessing = false;
function updatePartij(){
if(isProcessing) return;
isProcessing = true;
$.ajax( { url: 'heartbeat.php?uwBeurt=' + uwBeurt + '&w=' + w + '&ka=' + ka,
succes: {isProcessing = false;}
error: {isProcessing = false;}
});
setTimeout('updatePartij()', 4500);
};
</script>