无法使用ajaxSubmit:TypeError:Object [object Object]没有方法'ajaxSubmit'

时间:2012-12-18 20:35:48

标签: jquery ajax

你必须忍受我,因为我刚刚开始使用jQuery所以这可能是一件非常简单的事我无法理解。 我有一个我正在开发的网站的登录表单,我正在尝试使用ajaxSubmit发送丢失密码请求的请求。此请求源自模态div上的表单。

形式:

<div id="dialog" style="display: none" title="Retrieve your password">
        <p>
            Please enter your username below and you will have a new password sent to the email address you registered with the account.
        </p>
        <form id="passform" action="comment.php" method="post">
            <input type="text" name="user" id="user">
        </form>
    </div>

jQuery提交请求:

$(document).ready(function()
        {
            function doit(formData, jqForm, options)
            {
                // formData is an array; here we use $.param to convert it to a string to display it
                // but the form plugin does this for you automatically when it submits the data
                var queryString = $.param(formData);

                // jqForm is a jQuery object encapsulating the form element.  To access the
                // DOM element for the form do this:
                // var formElement = jqForm[0];

                alert('About to submit: \n\n' + queryString);

                // here we could return false to prevent the form from being submitted;
                // returning anything other than false will allow the form submit to continue
                return true;
            }


            $("#getpass").click(function()
            {

                $("#dialog").dialog(
                {
                    autoOpen : true,
                    resizable : false,
                    height : 270,
                    modal : true,
                    hide : "fold",
                    show : "fold",
                    buttons :
                    {
                        "Retrieve Password" : function()
                        {
                            $("#passform").ajaxSubmit(
                            {
                                url : "php/lostpassword.php",
                                type : "post",
                                success : doit
                            });
                            return false;
                        },
                        Cancel : function()
                        {
                            $(this).dialog("close");
                        }

                    }
                });

            });

        });

然而,当我实际按下按钮时,我收到以下控制台错误: 未捕获的TypeError:Object [object Object]没有方法'ajaxSubmit'

我已经检查过所有ID都匹配,并且正在加载相关的js文件。

我现在已经没想完了,有人可以帮忙吗?

2 个答案:

答案 0 :(得分:1)

仅供将来参考,错误被抛出,因为我是个白痴:/ 我显然包含了两个不同版本的jQuery,只要我删除了额外的包含它就开始工作了。

答案 1 :(得分:1)

有相同的错误消息,并通过添加jQuery Form插件解决,该插件具有ajaxSubmit函数。