提交表单后关闭弹出框



我使用jQuery .mb.balloon.js, jQuery插件在我的网页中添加气球提示。我需要关闭弹出框,提交表格后。我尝试了hideDuration: 80方法,但它不起作用…

$.ajax({
type: 'GET',
data: dataString,
url: baseUrl + "send/",
contentType: "application/json; charset=utf-8",
success: function (result) {
$('#balloon').balloon({hideDuration: 80}); // hide my popup box
},
error: function (result) {
alert(result);
}

Thanks in advance

如果您使用的是bootstrap模式弹出式,请尝试下面的代码

$("#balloon").modal('hide');    

可以使用addclass函数为模态添加隐藏类

try this

$("#baloon").hideBalloon({hideDuration:80});

相关内容

  • 没有找到相关文章

最新更新