Message消息框

版权声明:本文为博主原创文章,创作不易转载请注明出处 https://blog.csdn.net/awangwu/article/details/82862321
//示例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秒后关闭

猜你喜欢

转载自blog.csdn.net/awangwu/article/details/82862321