Jquery:noty确认消息

时间:2013-11-30 08:49:01

标签: javascript jquery noty

我正在使用 JQuery noty插件。我需要确认消息框,确认消息框如何与按钮一起使用,但是按钮点击事件不工作。当我点击任何按钮时。它给了我 的 HTTP Error 404.0 - Not Found. The resource you are looking for has been removed, had its name changed, or is temporarily unavailable. 错误。以下是我的代码。

 noty({
        text: 'Are you sure?',
        type: 'confirm',
        buttons: [
           {
               addClass: 'btn btn-primary', text: 'Ok', onClick: function ($noty) {
                   $noty.close();
                   noty({ text: 'You clicked "Ok" button', type: 'success' });
               }
           },
           {
               addClass: 'btn btn-danger', text: 'Cancel', onClick: function ($noty) {
                   $noty.close();
                   noty({ text: 'You clicked "Cancel" button', type: 'error' });
               }
           }
        ]
    })

这是错误的。

1 个答案:

答案 0 :(得分:1)

检查脚本是否真的通过firebug / devtools加载,以及路径是否正确。测试了你的代码,它对我有用。