jquery – .delay()和.setTimeout()

前端之家收集整理的这篇文章主要介绍了jquery – .delay()和.setTimeout()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
根据.delay()上的jQuery文档,

The .delay() method is best for delaying between queued jQuery
effects. Because it is limited—it doesn’t,for example,offer a way to
cancel the delay—.delay() is not a replacement for JavaScript’s native
setTimeout function,which may be more appropriate for certain use
cases.

有人可以扩大这个吗?什么时候更适合使用.delay(),什么时候最好使用.setTimeout()?

解决方法

我认为你发布的内容真的很自然。

使用.delay()的jQuery效果包括动画。

setTimeout()最适合其他任何东西。例如,当您需要在一定时间内触发事件时。

原文链接:https://www.f2er.com/jquery/181746.html

猜你在找的jQuery相关文章