消息框

function autoDisappear(title,msg,timeout){
         $.messager.show({
                         title:title,
                         msg:msg,
                         timeout:timeout,
                         showType:'show',
                         style:{

                                   //定位于 页面的右下角
                                   left:'', 
                                   top:'',
                                   right:0,
                                   bottom:-document.body.scrollTop - document.documentElement.scrollTo   

                                    //定位位于顶部中间(注释部分)

                                    // right:'',

                                    // top:document.body.scrollTop+document.documentElement.scrollTop,
                                  // background:'#EA5513',
                                  // bottom:''
                                 }
                      });
 }