我尝试在按钮上添加按钮确认,但是它似乎不起作用,任何想法为什么?
我从分段按钮下的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'});
}
}
]
})
}
答案 0 :(得分:0)