如何使用按钮隐藏 bpopup jquery?我有一个 ajax 响应,如果数据返回错误失败,将调用 bpopup。然后在我的 bpopup 里面我有一个“知道了!” 按钮当用户单击它时,它只会关闭 bpopup
$.ajax({
url: 'my_url',
type: "POST",
success: function(data){
if(data.error == 'failed){
$('#popup').bPopup({
modalClose: false,
opacity: 0.6,
positionStyle: 'fixed'
});
//then my bpopup has a button "Got it!"
$('.gotit').click(function(e) {
//Code the will hide the bpopup.
}
}
}
})
我试过$('#popup).hide();
了,但它并没有完全关闭bpopup
。
顺便说一句,这是我的弹出 html。
<div id="popup" style="display: none; min-width: 350px;">
<span class="button b-close"><span>X</span></span>
<div class="col-lg-12">
<p><span class="ui-icon ui-icon-alert"></span> The Code does not match the information provided.</p>
<button class="btn btn-primary btn-sm pull-right gotit">Got it</button>
</div>
</div>