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

attach event handler to bootsrap ok button, where to find html?

谁能告诉我如何将事件处理程序附加到 bootsrap OK 按钮。比如说我想展示一个

alert("hello world"); 

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

我知道如何用 jQuery 做到这一点,但我找不到按钮的 html 以便我可以向其添加 ID 或 class。

Live Demo

只需遵循您使用 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;