jQuery $.when() with variable arguments

微笑、不失礼 提交于 2019-11-26 20:52:49

问题


I want to send [1, n) AJAX-requests to the server and after all have returned a result a modal dialog should be closed. $.when(a(), b(), c()) would be perfect, but I don't know how to pass the variable count of functions to $.when as parameter. Any ideas how to solve this problem?


回答1:


Call the functions and add their return values to an array. Then call $.when passing the array as argument like so:

$.when.apply($, array)

See Function.prototype.apply [MDN] for more information and my answer here for an extended example.



来源:https://stackoverflow.com/questions/8011652/jquery-when-with-variable-arguments

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!