我正在使用此实现:
example page for the script I am using
作为测试,我只想隐藏
上的消息$.msgBox({
title:"Hello",
content:"Hello World!"
afterShow: function () {
//close it when reach this
},
});
我对符号本身$.msgBox
感到困惑 - 如何从jQuery访问此对象函数?
答案 0 :(得分:1)
$.msgBox({
title:"Hello",
content:"Hello World!"
afterShow: function () {
//close it when reach this
$(".msgButton").trigger('click');
},
});
使用.trigger()关闭对话框。