jQuery实现的简单提示信息插件

本文实例讲述了jQuery实现的简单提示信息插件分享给大家供大家参考,具体如下:

jQuery代码如下:

rush:js;"> (function ($) { $.fn.Tips = function (options) { var defaults = { html: "",times: 3000 } _this_ = $("#tips"); _this_.html(options.html); _this_.show(); setTimeout(function () { _this_.hide() },options.times); }; })(jQuery);

css样式如下:

rush:css;"> .tips { height: 20px; background-color: Green; padding: 5px 20px; color: White; display: none; margin-left: 50px; }

使用方法

rush:js;"> display:none" id="tips">

希望本文所述对大家jQuery程序设计有所帮助。

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...