将事件处理程序附加到bootstrap ok按钮,在哪里找到html?

时间:2015-02-07 23:46:12

标签: jquery angularjs bootstrap-modal

有人可以告诉我如何将事件处理程序附加到bootsrap OK按钮。比方说,我想展示一个

alert("hello world"); 

当用户在通知对话框中单击“确定”时。

我知道如何使用jQuery,但我找不到按钮的html,以便我可以添加一个id或类。

Live Demo

1 个答案:

答案 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;