js alert(“”)弹框 自定义样式详解编程语言

首先用css渲染一个样式

#msg{ 
    height: 2rem; 
    text-align: center; 
    position: fixed; 
    top: 50%; 
    margin-top: -1rem; 
    line-height: 2rem; 
    width: 100%; 
} 
#msg span{ 
    color: #fff; 
    background: rgba(0,0,0,0.6); 
    height: 2rem; 
    display: inline-block; 
    padding: 0 3rem; 
    border-radius: 5px; 
}

然后js匿名一个函数,用的时候就直接用alert事件就行了

function alert(e){ 
    $("body").append("<div id='msg'><span>"+e+"</span></div>"); 
    clearmsg(); 
} 
function clearmsg(){ 
    var t = setTimeout(function(){ 
        $("#msg").remove(); 
    },2000) 
};

 

原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/17211.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论