文件名称:groupedTimeout:组超时,以便它们可以一次全部清除
文件大小:4KB
文件格式:ZIP
更新时间:2024-07-31 23:59:05
JavaScript
分组超时 分组超时允许您创建一组可以一次全部清除的超时。 添加超时时,您可以选择取消或在 groupedTimeout 清除后立即运行。 基本用法 var timeouts = groupedTimeout ( ) ; // use timeouts.add() just like you would setTimeout. var timeoutId = timeouts . add ( function ( ) { console . log ( 'I will run after one second unless the timeout is cleared.' ) ; } , 1000 ) ; // use timeouts.always() if you want to be guaranteed that the function will run. var timeou
【文件预览】:
groupedTimeout-master
----.gitignore(13B)
----README.md(1KB)
----tests()
--------tests.js(3KB)
--------index.html(879B)
----bower.json(509B)
----package.json(841B)
----groupedTimeout.js(2KB)