有人可以告诉我如何将事件处理程序附加到bootsrap OK按钮。比方说,我想展示一个
alert("hello world");
当用户在通知对话框中单击“确定”时。
我知道如何使用jQuery,但我找不到按钮的html,以便我可以添加一个id或类。
答案 0 :(得分:0)
只需按照您使用dialog.result.then
// Notify Dialog
case 'notify':
dlg = $dialogs.notify('Something Happened!','Something happened that I need to tell you.');
dlg.result.then(function(btn){
alert("Hey there");
});
break;