当我们用这种方式打开了Messager的时候
$.messager.show({
title: '温馨提示',
msg: ' 提示',
showType: 'show',
timeout: 300000,
style: {
right: '',
left: 0,
top: document.body.scrollTop + document.documentElement.scrollTop,
bottom: ''
}
});
如果想要手动关闭它(不希望它等待到N秒后自己关),则使用代码:
$(".messager-body").window('close');
即可实现。