分类分类
更新时间:2026-08-08 18:49:02作者:fang
本文实例讲述了jQuery实现的简单提示信息插件。分享给大家供大家参考,具体如下:
jQuery代码如下:
(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样式如下:
.tips
{
height: 20px;
background-color: Green;
padding: 5px 20px;
color: White;
display: none;
margin-left: 50px;
}
使用方法:
<span class="tips" style="display:none" id="tips"><span>
<script>
$("#aa").Tips({html:"提示信息的内容",times:4000})
</script>
希望本文所述对大家jQuery程序设计有所帮助。
相关
星球小队策略游戏316.49 MBv1.15.366.638912026-08-08
下载超市大亨3D经营养成253.14 MBv10.252026-08-08
下载绝世武林角色扮演453.09 MBv1.8.14162026-08-08
下载Crush Crush手机版经营养成124.86 Mv0.4482026-08-08
下载消消大亨经营养成13.56 Mv1.0.02026-08-08
下载endacopia手机版冒险游戏1.43Gv1.0.02026-08-08
下载最强帮主角色扮演143.91 MBv9991.12026-08-08
下载战西游手游折扣版策略游戏13.77 MBv1.02026-08-08
下载富豪物语创业时代官方版经营养成215.01 Mv3.0.12026-08-08
下载咒术回战爱憎乱斗手游动作射击291.7 Mv1.0.02026-08-08
下载三国吧兄弟折扣版策略游戏380.04 MBv1.0.02026-08-08
下载代号97动作射击277.47 Mv1.0.72026-08-08
下载










