1. 程式人生 > >Message訊息框

Message訊息框

//示例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秒後關閉