嗨,我有这个 jQuery 代码:
$('#myid').click(function() {
var data = {
action: 'xxx_ajax_response',
xxx_ajax_response_nonce: the_ajax_script.xxx_ajax_response_nonce
};
//do an ajax request
$.post(the_ajax_script.ajaxurl, data, function(response) {
$(this).next().slideToggle();
});
//return false;
});
当 AJAX 功能仍在执行/加载时如何暂时禁用点击事件?但是在成功加载 AJAX 后恢复点击?我尝试过更改课程,但我正在使用 id 选择器并且不起作用。有没有简单的方法?谢谢你。