jquery - 带ajax的程序流程

时间:2011-11-14 15:48:08

标签: javascript jquery

到目前为止,我得到了预期的输出,但它是侥幸吗?

具有ajax的getTemplate()函数是否阻止

alert("i want this first");

getTemplateID();

alert("i want this after the getTemplateID() executes");

1 个答案:

答案 0 :(得分:2)

你有一个参数:(在jQuery ajax中)。

async: true / false

如果错误 - 所以它就是阻止。

   jQuery.ajax(
 {
    ....
     async: true
 });