使用jQuery在设置时间后淡出div
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jQuery在设置时间后淡出div相关的知识,希望对你有一定的参考价值。
Here’s a handy bit of code that I use quite regularly, its particularly useful if your getting a response message from a form to notify the user that there data was sent, or comunicate an error and you want to fade the message out after a set time.
$(document).ready(function(){ setTimeout(function(){ $("div.mydiv").fadeOut("slow", function () { $("div.mydiv").remove(); }); }, 2000); });
以上是关于使用jQuery在设置时间后淡出div的主要内容,如果未能解决你的问题,请参考以下文章
在页面加载时,使用 jQuery 淡入淡出一个又一个 div