对象不支持属性或方法'确认'

时间:2016-04-26 11:58:20

标签: javascript jquery asp.net .net webforms

< p>我有< code> WebForm< / code>它继承自< code> MasterPage< / code>并在< code> WebForm< / code>我使用了jQuery和JavaScript,我是新手,因为我想创建一个< code>对话框< / code>使用自定义按钮,默认< code> confirm()< / code>方法不允许任何更改,所以我使用了来自< a href =" https://myclabs.github.io/jquery.confirm/"的资源和代码。 rel =" nofollow">此网站< / a>。我不知道把JS源放在哪里,所以我把它放在两者之间(告诉我,如果我做错了):< / p> < pre>< code>< asp:Content ID =" Content2" ContentPlaceHolderID =" CSS" RUNAT ="服务器"> < / ASP:内容和GT; < /代码>< /预> < p>我从参考资料中获得的资料来源是:< / p> < pre>< code>< script src ="〜/ jquery.confirm.js">< / script> < script src ="〜/ jquery.confirm.min.js">< / script> < script src =" https://code.jquery.com/jquery-1.9.1.min.js">< / script> < /代码>< /预> < p>同样从引用中复制,这是我的jQuery< code>对话框< / code>:< / p> <预><代码> $("#Button1的&#34)。确认({     标题:"确认消息",     text:"您确定输入的信息是否准确?",     确认:功能(按钮){         返回true;     },     取消:功能(按钮){         返回false;     },     confirmButton:"是",     cancelButton:" No" }); < /代码>< /预> < p>每当我尝试运行代码时,都会弹出此错误:< / p> < BLOCKQUOTE>   < p>对象不支持属性或方法'确认'。< / p> < / BLOCKQUOTE> < p>我尝试过使用各种JS资源和jQueries,因为我不熟悉这些资源,但所有这些资源都没有用。如何解决此问题?< / p>

1 个答案:

答案 0 :(得分:0)

试试这个:

$('#Button1').on('click', function () {
$.confirm({
    title: "Confirmation Message",
    text: "Are you sure that the information you have entered is accurate?"
    confirm: function (button) {
        return true;
    },
    cancel: function (button) {
        return false;
    },
    confirmButton: "Yes",
    cancelButton: "No"
});
});