未捕获TypeError:Object [object Object]没有方法'dialog' [英] Uncaught TypeError: Object [object Object] has no method 'dialog'

查看:120
本文介绍了未捕获TypeError:Object [object Object]没有方法'dialog'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图在MVC3应用程序中使用jQueryUI对话框,但是有一个问题。
我拥有的对话框是将部分视图加载到用户编辑或创建新项目的位置。这样做很好,但是如果我尝试保存或更新该项目,或者如果我尝试关闭它,我会收到标题中的消息。

I am trying to use the jQueryUI dialog in an MVC3 application but having an issue with it. The dialog I have is loading a partial view into it where the user will either edit or create a new item. This works fine but if I try to save or update the item, or if I try to close it I get the message in the title.

我添加了所有所需的.js文件,但仍然收到错误。我也使用firebug,但仍然找不到为什么出现错误。

I have added all of the required .js files but still getting the error. I have also used firebug but still can't find why error is happening.

HTML

<span class="EditLink ButtonLink" addressId="@addr.Id">Modify this Address</span>
<div id="popup"></div>

JavaScript

$(document).ready(function () {
    var id = 0;

    //define config object
    var dialogOpts = {
        title: "Edit item",
        modal: true,
        autoOpen: false,
        height: 500,
        width: 500,
        open: function () {
            $("#popup").load("/partialviewtoload/" + id);
        },
        buttons: {
            Cancel: function() {
                $(this).dialog('close');
            }
        }
    };

    $("#popup").dialog(dialogOpts);    //end dialog

    $('.EditLink').click(function() {
        id = $(this).attr("itemId");
        $("#popup").dialog("open");
        return false;
    });    
});


推荐答案

问题是我在引用jquery-1.5 1.min.js两次。一旦在_Layout.cshtml和部分视图中,我正在加载。 。删除了部分视图中的引用,并将其排序。

issue was that I was referencing "jquery-1.5.1.min.js" twice. Once in the _Layout.cshtml and also in the partial view I was loading. . Removed the reference in the partial view and got it sorted.

这篇关于未捕获TypeError:Object [object Object]没有方法'dialog'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆