首页 > 代码库 > 一个简单的弹窗提示信息
一个简单的弹窗提示信息
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");
本文出自 “学的不仅是技术,更是梦想” 博客,谢绝转载!
一个简单的弹窗提示信息
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。