我的问题是关于$.ajax()
jQuery 方法的。我无法使成功参数$.ajax()
起作用。
这有效:
$.ajax({
type: 'POST',
url: "/getCodes.php?codes=billingCodes&parent="+$('#wClient').val(),
dataType: 'json',
success: window.alert("inside aJax statement")
});
这不会:
$.ajax({
type: 'POST',
url: "/getCodes.php?codes=billingCodes&parent="+$('#wClient').val(),
dataType: 'json',
success: function(){
window.alert("inside aJax statement");
}
});
在第一种情况下,我得到一个 JavaScript 警报窗口,让我知道$.ajax()
我调用的方法正在工作。在第二个代码块中更改的所有内容是我将window.alert()
一个function() { window.alert(); }
.
这样做的目的是验证 $.ajax 是否正在运行,以便我可以function(){}
在 $.ajax 成功运行时放入一些实际有用的代码。