Noty jQuery插件按钮确认

时间:2013-05-15 00:25:45

标签: jquery plugins

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

我从分段按钮下的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'});
      }
    }
  ]


    })


}

1 个答案:

答案 0 :(得分:0)

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