模拟app 报异常

html

 

<div class="promptBox"></div>

 

 

css:

 

.promptBox{

   position:fixed;

   z-index:990;

   left: 50%;

   background: white;

   bottom:10%;

   transform:translate(-50%, -10%); 

   color: white;

   background:rgb(114,114,114);

   padding:5px;

   font-size:0.7rem;

   border-radius:2px;

   display:none;

}

 

js:

 

$('.promptBox').fadeIn(2000,function(){

$('.promptBox').fadeOut(1000);

});

 

请求数据报异常方式:

if(data.ret ==0){

$('.promptBox').text(data.message);

$('.promptBox').fadeIn(2000,function(){

$('.promptBox').fadeOut(1000);

});

return;

 }


 

上一篇:leetcode第114题将二叉树展为链表


下一篇:第114天学习打卡(SpringCloud 总结 分析开源项目)