gpt4 book ai didi

javascript - 如何使用 jQuery queue() 循环触发一次操作

转载 作者:行者123 更新时间:2023-11-30 20:59:07 24 4
gpt4 key购买 nike

我有一个包含许多元素的 jQuery 对象,例如$('.items')。我让这些项目在 queue() 中进行一些处理,并且根据条件,我想更改一个变量。队列完成后,我想检查该变量并触发一个事件。我的问题是,检查变量并在队列内部 执行某些操作将触发多次(对于循环遍历的 jQuery 对象中的每个节点),并在队列外部 执行此操作发生在队列结束之前,因此它没有捕捉到变量更新。

例如:

var triggered = false;

$('.items').addClass('doing-things').delay(500).queue(function(next) {
// Do some things
console.log('Things are happening');
// Check conditions and change variable
if ( someCondition ) {
triggered = true;
}
// Finished doing things
$(this).removeClass('doing-things');
next();
}).queue(function(next) {
// Check inside queue
if ( triggered ) {
// This will be fired repeatedly in the loop, $('.items').length number of times
console.log(triggered);
}
next();
});

// Check after queue
if ( triggered ) {
// This will fire once, but will be false, because it will fire before the queue finishes (with delays)
console.log(triggered);
}

谁能告诉我如何更新队列中的 triggered 变量,然后检查它并触发一个事件(或者在这个例子中,执行 console.log(triggered)) 只有一次?

编辑:Example fiddle here用于调试。

最佳答案

不是简单地检查 triggered 是否为 true您等待 triggered 为 true

演示

var triggered = false,
$test1 = $('#test1'),
$test2 = $('#test2');

$('.item').addClass('doing-things').delay(1000).queue(function(next) {
// Do some things
console.log('Things are happening');
// Check a condition and change variable
if ( !triggered ) {
triggered = true;
}
// Finished doing things
$(this).removeClass('doing-things');
next();
}).queue(function(next) {
// Check inside queue
if ( triggered ) {
// This will be fired repeatedly in the loop, $('.items').length number of times
$test1.append('<div>Fired</div>');
}
next();
});
triggerEvent();

function triggerEvent ()
{
if( !triggered )
{
setTimeout( triggerEvent, 1000 );
}
else
{
$test2.append('<div>Fired</div>');
}
}
.item {
padding: 10px;
margin: 10px;
border: 2px solid #aaa;
}

.item.doing-things {
border-color: #f00;
}

.test {
padding: 20px;
margin: 10px;
background: #fff;
}

#test1 {
border: 2px solid #0f0;
}

#test2 {
border: 2px solid #00f;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div class="item">A</div>
<div class="item">B</div>
<div class="item">C</div>
<div class="item">D</div>

<div id="test1" class="test"></div>
<div id="test2" class="test"></div>

关于javascript - 如何使用 jQuery queue() 循环触发一次操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47300860/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com