码迷,mamicode.com
首页 > Web开发 > 详细

ajax同步执行

时间:2014-12-08 12:05:36      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   os   sp   java   on   div   bs   

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同步执行

标签:style   io   color   os   sp   java   on   div   bs   

原文地址:http://www.cnblogs.com/aneo/p/4150687.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!