如何关闭msgBox?

时间:2014-09-24 18:08:41

标签: javascript jquery

我正在使用此实现:

example page for the script I am using

的jquery msgbox,我真的很困惑如何在javascript中调用消息框的关闭。尝试了各种各样的东西,但我似乎无法点击正确的hide()函数,因为它不会删除它创建的不透明背景。手动点击按钮工作正常...

作为测试,我只想隐藏

上的消息
$.msgBox({
title:"Hello",
content:"Hello World!"
    afterShow: function () {
      //close it when reach this
    },
});

我对符号本身$.msgBox感到困惑 - 如何从jQuery访问此对象函数?

1 个答案:

答案 0 :(得分:1)

$.msgBox({
title:"Hello",
content:"Hello World!"
    afterShow: function () {
      //close it when reach this
      $(".msgButton").trigger('click');
    },
});

使用.trigger()关闭对话框。