3

我正在使用JQuery 通知插件。我需要确认消息框,但是确认消息框与Buttons一起很好,但是Buttons Click 事件不起作用。当我单击任何按钮时。它给了我 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' });
               }
           }
        ]
    })

这有什么问题。

4

1 回答 1

1

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

于 2013-11-30T09:23:20.510 回答