我正在使用 JQuery noty插件。我需要确认消息框,但是确认消息框按钮一起使用还不错,但是按钮Click Event 不起作用。当我单击任何按钮时。它给我
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' });
               }
           }
        ]
    })

这怎么了

最佳答案

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

关于javascript - jQuery的:Noty确认消息,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20298332/

10-13 04:04