我知道我的标题不是很清楚。
例如,这是我的代码结构:
if (foo == something) {
// Ajax call 1, let it be $.ajax("foo1.html") and so on
} else {
// Ajax call 2, let it be $.ajax("foo2.html") and so on
}
我将如何测试是否$.ajax("foo1.html")
已实际运行?
请不要告诉我再测试foo == something
一次。我的实际代码要复杂得多,所以请从ajax调用的角度回答这个问题。
这可能吗?