jQuery实现文本显示一段时间后隐藏的方法分析
(编辑:jimmy 日期: 2024/11/2 浏览:3 次 )
本文实例讲述了jQuery实现文本显示一段时间后隐藏的方法。分享给大家供大家参考,具体如下:
点击button时,提示信息显示,8秒后,信息隐藏。
<input id="place_order" name="place_order" type="submit" /> <div class="after_submit_remind" style="display: none;"> 请耐心等待,这段文本显示8秒后会消失,安拓网络。 </div>
jQuery(document).ready(function(){ jQuery(document).on('click', 'input#place_order', function(){ jQuery(".after_submit_remind").show().delay(8000).hide(0); }); });
扩展:令时间每秒自动减1;
将text中的“8”改为“9”;
jQuery(document).on('click', 'input#place_order', function(){ jQuery(".after_submit_remind").show().delay(8000).hide(0); jQuery(function (){ reduceTime(); }); function reduceTime() { var auto_reduce = jQuery("#auto-time").html(); if(auto_reduce == 0){ jQuery("#auto-time").html("9"); }else{ jQuery("#auto-time").html(--auto_reduce); setTimeout(reduceTime,1000); } }; });/*显示 8s 的content*/
感兴趣的朋友可以使用如下工具测试上述代码运行效果:
在线HTML/CSS/JavaScript代码运行工具:
http://tools.jb51.net/code/HtmlJsRun
在线HTML/CSS/JavaScript前端代码调试运行工具:
http://tools.jb51.net/code/WebCodeRun
更多关于jQuery相关内容可查看本站专题:《jQuery常见事件用法与技巧总结》、《jQuery常用插件及用法总结》、《jQuery操作json数据技巧汇总》、《jQuery扩展技巧总结》、《jQuery常见经典特效汇总》及《jquery选择器用法总结》
希望本文所述对大家jQuery程序设计有所帮助。
下一篇:javascript获取select值的方法完整实例