<html> <head> <title>jQuery - 消息提示自定义插件</title> <script type="text/javascript" src="jquery-1.4.4.min.js" ></script> <script> $(document).ready(function(){ /** msg:内容 type:消息框类型 iwidth:消息框宽度 iheight:消息框高度 **/ jQuery.showMessage = function(msg, type, iwidth, iheight) { if(iwidth == null) iwidth = 300; if(iheight == null) iheight = 50; /** 得到IE中间位置 **/ var cheight = document.body.clientHeight; var cwidth = document.body.clientWidth; var itop=(cheight-iheight)/2+document.body.scrollTop; var ileft=(cwidth-iwidth)/2+document.body.scrollLeft; /** 错误信息 **/ if(type == "error") $("#Message").css({background:"#ffccdd", border:"1px solid #f67ba4"}); /** 失败信息 **/ else if(type == "fail") $("#Message").css({background:"#f8e4fa", border:"1px solid #f694ff"}); /** 成功信息 **/ else if(type == "success") $("#Message").css({background:"#e7fbe5", border:"1px solid #7dfc70"}); /** 警告信息 **/ else if(type == "warning") $("#Message").css({background:"#f9f6da", border:"1px solid #fce51f"}); /** 提示信息 **/ else if(type == "tip") $("#Message").css({background:"#f2f2f2", border:"1px solid #9d9d9d"}); /** 设置提示框公共样式 **/ $("#Message").css({width: iwidth+"px", height: iheight+"px", "font-size": "12px", top: itop+"px", left: ileft+"px", cursor:"pointer", position: "absolute" }); //设置消息内容 $("#Message").html(msg); /** 效果1 **/ //$("#Message").hide(); //$("#Message").fadeIn(1000); /** 效果2 **/ $("#Message").show(); $("#Message").css({top:(cheight - iheight +"px")}); $("#Message").animate({top:itop+"px", left:ileft+"px"}, 300); /** 点击消息关闭提示事件 **/ $("#Message").click(function(){ $("#Message").fadeOut(); }); } $("#error").click(function(){ $.showMessage("显示错误信息", "error"); }); $("#fail").click(function(){ $.showMessage("显示失败信息", "fail"); }); $("#success").click(function(){ $.showMessage("显示成功信息", "success"); }); $("#warning").click(function(){ $.showMessage("显示警告信息", "warning"); }); $("#tip").click(function(){ $.showMessage("显示提示信息", "tip"); }); }); </script> </head> <body> <div id="Message" align="center"></div> <input type="button" id="error" value="错误" /> <input type="button" id="fail" value="失败" /> <input type="button" id="success" value="成功" /> <input type="button" id="warning" value="警告" /> <input type="button" id="tip" value="提示" /> </body> </html>
详细解决方案
jQuery - 讯息提示自定义插件
热度:117 发布时间:2012-11-06 14:07:00.0
相关解决方案
- jquery 获取jsp页面的id解决方法
- jquery,二维数组取值。解决办法
- 求jquery.form.js+jquery.validate.min.js 用ajax提交表单的代码范例
- jquery 提交form表单不用插件的那种 如何提交
- jquery ajax回传没有值,该怎么处理
- jquery easyUI datagrid struts2有关问题
- jquery form 有关问题
- springmvc jquery ajax 提交复杂对象,415异常解决办法
- 应用Struts2 与 jquery,ajax验证用户注册,不用从数据库获取数据
- jquery ajax select解决方法
- php jquery check username ajax检察帐号唯一性
- jquery ajax返回值的有关问题
- jquery 或js 获取指定字符间的字符串,并轮换。回答出来的是大神级~
- jquery 的bind里面能不能获得返回值呢? 对小弟我很难的有关问题啊
- jquery 的uploadify下传图片怎么让出错信息提示成中文
- java+jquery easy ui + json + struts分页例子
- jquery easyui分页效率有关问题
- jquery 如何获得动态添加后的子元素个数?
- jQuery.ajax()请求struts2数据 回到data值了undefined
- 关于Struts2 jQuery Plugin的 Result,该如何处理
- Jquery 点击按钮实现图片翻页,该如何解决
- jquery 关于监听checkbox的选中和不选中事件,该如何解决
- jQuery append动态添加的页面对象如何处理刷新掉
- Jquery+json解决思路
- jquery post有关问题
- 求大神解决偏题 - jquery ajax
- jquery $.ajax有关问题
- jquery td遍历有关问题
- jquery ui taps有关问题,求解!
- jquery easyui 如何设置标题列居左,里面的数据列居右