$.getJSON 返回值、AJAX异步调用步骤

//首先要判断用户录入的手机号是不是中国移动的,不是直接给出提示,并终止登录
    if($("#cmUsername1").val().isMobile())//手机号码
    {
        jQuery.ajax({
                    async: false,//必须同步!!
                    url: G_CTX_ROOT+"/query/isJSorHNMobile",
                    data: {mobile: $("#cmUsername1").val()},
                    dataType: "json",
                    success: function (json) {
                        if(json.data == -1)
                        {
                            jQuery.isChinaMobile = false;
                        }
                        else
                        {
                            jQuery.isChinaMobile = true;
                        }
                    },
                    error: function (err) {
                        jQuery.isChinaMobile = true;
                    }
         });

        if(!jQuery.isChinaMobile && jQuery.isChinaMobile!=undefined)
        {
            try {showTipError(newForm,"请输入中国移动手机号码"); } catch (e) {}
            //$(".mo-form-widght-pb0").hide();
            return false;
        }
    }    

$.getJSON 返回值、AJAX异步调用步骤

时间: 2024-12-13 10:23:45