在第二个示例中,除非您从服务器成功回电,否则将不会发生任何事情。添加一个错误回调,正如这里许多建议所建议的那样,以查看ajax请求确实正在工作,但服务器当前未发送有效响应。
$.ajax({ type: "POST", url: "/getCodes.php?pres=billingCodes&parent="+$('#wClient').val(), dataType:"json", success: function(response){ alert(response); }, error: function(jqXHR, textStatus, errorThrown){ alert('error'); } });
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)