Не уверен в правильном способе вызова нескольких функций.Мне просто нужна простая справка по синтаксису - PullRequest
1 голос
/ 27 июля 2011

Новое в jQuery. Нужна помощь с простым синтаксисом.

<script>
$(document).ready(function () {
    jQuery.validator.addMethod("phoneUS", function (phone_number, element) {
        phone_number = phone_number.replace(/\s+/g, "");
        return this.optional(element) || phone_number.length > 9 && phone_number.match(/^(1-?)?(\([2-9]\d{2}\)|[2-9]\d{2})-?[2-9]\d{2}-?\d{4}$/);
    }, "Please specify a valid phone number");
    $("#networx_affiliate").validate({
        rules: {
            service_name: "required"
        }
    }).ajaxForm({
        url: '**********',
        target: '#output',
        type: 'post',
        dataType: 'xml',
        success: function processXml(responseXML) {
            // 'responseXML' is the XML document returned by the server; we use 
            // jQuery to extract the content of the message node from the XML doc 
            $(xml).find("affiliateresponse").each(function () {
                $("#output").append($(this).find("successCode") + "<br />");
                $("#output").append($(this).find("errormessage") + "<br />");
            });
        }
    });
});
</script>

Я получил плагин для формы проверки и плагин для формы ajax. Пожалуйста, как правильно их назвать. потому что, как они у меня сейчас, похоже, что ajax не работает.

Спасибо

Ответы [ 2 ]

0 голосов
/ 27 июля 2011

если вы хотите вызвать метод ajax после проверки формы, вы можете сделать это следующим образом

$("#networx_affiliate").validate({
        submitHandler: function (form) {
            CallAjaxMethod();
        },

        rules: {
            service_name: "required"
        }
});

function CallAjaxMethod()
{
    $.ajax({
        url: 'https://api.networx.com',
        target: '#output',
        type: 'post',
        dataType: 'xml',
        success: function processXml(responseXML) {
            // 'responseXML' is the XML document returned by the server; we use 
            // jQuery to extract the content of the message node from the XML doc 
            $(xml).find("affiliateresponse").each(function () {
                $("#output").append($(this).find("successCode") + "<br />");
                $("#output").append($(this).find("errormessage") + "<br />");
            });
        }
    });

}
0 голосов
/ 27 июля 2011

.validate () возвращает валидатор, а не объект формы.Попробуйте сначала вызвать .ajaxForm (), а затем .validate ().

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...