1.在屏幕中央显示一条提示消息,1秒钟后自动消失
function showMsg(msg) {
$.messager.show({
title : '消息',
msg : msg,
timeout : 800,
showType : 'slide',
style : {
right : '',
bottom : '',
top : document.body.scrollTop + document.documentElement.scrollTop
+ window.innerheight
}
});
}