一个简单的弹窗提示信息
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一个简单的弹窗提示信息相关的知识,希望对你有一定的参考价值。
js:
function alertError(msg,code){ alertErrorF(msg,code,null, 2000); } function alertErrorF(msg,code,f, ms){ if(ms==undefined) ms=2000; $(".alertError").remove(); $("body").append("<div class=‘alertError‘ style=‘display: block;position:absolute;zoom:1;z-index:2147483647;‘>"+msg+"</div>"); if(code>0){ $(".alertError").addClass("alertSucc"); }else{ $(".alertError").removeClass("alertSucc"); } window.setTimeout(function(){ $(".alertError").remove(); if(f!=null && typeof(f) == "function" && code>0){ f.call(f); } },ms) } css: .alertError{ display:none; min-width:100px; max-width:200px; width:auto; position:fixed; left:50%; top:40%; margin-left:-80px; word-wrap:break-word; border:none; padding:10px 20px; background-color:#ff5660; border-radius:5px; -moz-border-radius:5px; box-shadow:0 5px 27px rgba(0,0,0,0.3); -webkit-box-shadow:0 5px 27px rgba(0,0,0,0.3); -moz-box-shadow:0 5px 27px rgba(0,0,0,0.3); _display:block; z-index:101; padding:20px; color: white; text-align:center; }
jsp:
<div class="alertError" ></div> 使用: alertError("添加成功","1");
本文出自 “学的不仅是技术,更是梦想” 博客,谢绝转载!
以上是关于一个简单的弹窗提示信息的主要内容,如果未能解决你的问题,请参考以下文章