gpt4 book ai didi

javascript - jQuery - $.post 延迟对象数组的协调事件处理程序

转载 作者:行者123 更新时间:2023-12-01 01:28:38 24 4
gpt4 key购买 nike

我有一个 $.each block ,它迭代 form 上的所有 select 元素,并调用 $。为每一个发布

    var deferredObjects = [];

$('#form').find('select').each(
function(i, o) {
var jqxhr = $.post("data.json", {} ));
deferredObjects.push( jqxhr) ;
}
);

我希望在所有后期操作完成后触发事件处理程序。我将从 post 方法返回的所有延迟对象收集到一个数组中。我希望使用类似的东西

 $.when( ... ).then( ... );

但我不知道如何将此结构融入我的场景?

最佳答案

您可以使用 jquery 中可用的 Promise() (它将在所有集体操作完成后执行)。例如,您可以看到

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>promise demo</title>
<style>
div {
height: 50px;
width: 50px;
float: left;
margin-right: 10px;
display: none;
background-color: #090;
}
</style>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>

<button>Go</button>
<p>Ready...</p>
<div></div>
<div></div>
<div></div>
<div></div>

<script>
$( "button" ).on( "click", function() {
$( "p" ).append( "Started..." );

$( "div" ).each(function( i ) {
$( this ).fadeIn().fadeOut( 1000 * ( i + 1 ) );
});

$( "div" ).promise().done(function() {
$( "p" ).append( " Finished! " );
});
});
</script>

</body>
</html>

https://jsfiddle.net/mzo5Lhbk/

此外,如果您想使用when(),请阅读这些链接 https://api.jquery.com/jquery.when/

希望对你有帮助!!!

关于javascript - jQuery - $.post 延迟对象数组的协调事件处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53511059/

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