//示例1.默认右下角
$.messager.show({
title:'我的消息',//可以用span标签拼接改变字体样式
msg:data.msg,
timeout:2000,
showType:'slide'
});
//示例2.消息将显示在顶部中间 自定义消息框位置
$.messager.show({
title:'我的消息',
msg:'消息将在4秒后关闭。',
showType:'show',
style:{
right:'',
top:document.body.scrollTop+document.documentElement.scrollTop,
bottom:''
}
});
效果:右下角弹出消息框并在N秒后关闭