码迷,mamicode.com
首页 > 其他好文 > 详细

alert弹窗样式修改

时间:2020-07-13 18:22:38      阅读:86      评论:0      收藏:0      [点我收藏+]

标签:child   end   code   display   set   err   time   nbsp   remove   

//弹窗提示
window.alerts = alerts = (function () {
    var _alrElem = document.createElement("div");
    _alrElem.className = "error_page";
    var textElem = document.createElement("div");
    textElem.className = "errorText";
    _alrElem.appendChild(textElem)
    return function (_t) {
        _t = _t || ‘‘;
        document.body.appendChild(_alrElem);
        textElem.innerHTML = _t;
        _alrElem.style.display = "block";
        var timer = setTimeout(function () {
            if (_alrElem) { document.body.removeChild(_alrElem); }
            clearTimeout(timer);
        }, 2000);
    }
})();

 

alert弹窗样式修改

标签:child   end   code   display   set   err   time   nbsp   remove   

原文地址:https://www.cnblogs.com/echolife/p/13294477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!