我想在关闭 bpopup 之前调用一个函数。我使用了以下代码:
$('#casepromptPopup').bPopup({
escClose: false,
closeClass: 'b-close',
modalClose: false,
onClose: function() {
confirm("Are you sure you wish to quit and grade your performance?");
我想在弹出窗口关闭之前显示确认消息。但是onClose
方法会在弹出窗口关闭后触发。