//错误提示 function alertWrap(Tiptext) { var oHtml = ‘<div id="errTip"><span>‘ + Tiptext + ‘</span></div>‘; $("#errTip").css({ ‘top‘: ‘0%‘, ‘opacity‘: ‘0‘, ‘z-index‘:‘999‘ }); $("body").append(oHtml); setTimeout(function() { $("#errTip").css({ ‘top‘: ‘50%‘, ‘opacity‘: ‘1‘, ‘z-index‘:‘999‘ }); }, 10) setTimeout(function() { $(‘#errTip‘).css({ ‘top‘: ‘0%‘, ‘opacity‘: ‘0‘, ‘z-index‘:‘-1‘ }); setTimeout(function() { $("#errTip").remove(); }, 500); }, 2000) }
时间: 2024-10-18 11:32:49