我在另一个 AJAX 调用中有一个 AJAX 调用。
我正在使用$.ajax
方法:
$.ajax({
type: 'POST',
url: '/xx/xxx',
success: function (data) {
if(data == true){
var j = MethodThatCallAjaxFunction();
//some code here
}
}
});
j
在注释之后执行代码之前,如何确保填充 的值//some code here
?