$(document).ready(function() {
$('button').click(function() {
stal({
title: '这是一个警告',
text: '你确定要继续吗?',
type: 'warning',
showConfirmButton: true,
showCancelButton: true,
}).then(function(result) {
if (result) {
stal({
title: 'Success',
text: 'Your action was successful',
type: 'success',
showOkButton: true
});
} else {
stal({
title: '错误',
text: '您的操作已取消',
type: 'error',
showOkButton: true
});
}
});
});
});
