jquery怎么暂停定时器几秒后再重新执行

2025-03-13 07:27:39
推荐回答(1个)
回答1:

$

$('.dot ul li').click(function() {
    setTimeout(function() {
        // balabala
    }, 1000) // 1000ms = 1s
})