jQuery延迟函数使用介绍
程序员文章站
2022-03-06 09:37:29
第一种方法:最常用的方法settimeout
settimeout(function () {
$("pid").show();...
第一种方法:最常用的方法settimeout
settimeout(function () { $("pid").show(); }, 1000); //1s
第二种方法,jquery delay
/** *hide函数里必须放一个0,不然延时不起作用 */ $('#pid').delay(1000).hide(0); //1000=1s
上一篇: 运营免费网站的问答