2

我尝试在通知确认中添加按钮,但它似乎不起作用,任何想法为什么?

我从小节按钮下的 noty 网站上获取了代码:

http://needim.github.io/noty/

没有按钮,警报似乎可以正常工作,只是在尝试添加按钮时,什么都不会出现!

这是代码:

function Sure()
{
    var n = noty({
        text: 'Are you sure?',
        type: 'confirm',
        dismissQueue: false,
        layout: 'center',
        theme: 'defaultTheme'
 buttons: [
    {addClass: 'btn btn-primary', text: 'Ok', onClick: function($noty) {

        // this = button element
        // $noty = $noty element

        $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

0

主题之间缺少逗号:'defaultTheme' 和按钮。

于 2016-06-30T09:35:04.237 回答