首页 > 代码库 > ajax同步执行

ajax同步执行

function checkCode(code){
    $.ajax({
    url: ‘/admin/WebService1.asmx/CheckVerifyImage‘,
    type: ‘POST‘,
    dataType:"xml",
    data:{code:code},
    <span style="color: #FF0000;">async:false,</span>
    success: function(msg){
        isCodeRight=msg.text;
    },
    error: function(x, e) {
        alert(x.responseText);
        return false;
    }});
}
只需要添加async:false即可(jquery适用)

ajax同步执行