我想从我的 jquery 代码中返回以下响应。
function count_waiting(){
$.ajax({
url: 'index.php/event/count_waiting/2',
type: "post",
success: function(response) {
return response;
}
});
}
通过这样做,回报是不确定的
$(document).ready(function() {
alert(count_waiting());
});
知道我的代码有什么问题