在前端确认框上套用Promise

Posted by ngtmuzi on 2017-04-01
神秘代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//jquery + bootstrap
function askDlg(title, content) {
return new Promise(function (resolve, reject) {
$('#ask-title').text(title || '确认操作');
$('#ask-content').text(content || '确认操作吗?');

$('#ask-btn-yes').one('click', function () {
resolve();
$('#ask-dlg').modal('hide');
});

$('#ask-dlg').modal('show').one('hidden.bs.modal', reject);
});
}