jQuery ajax() 预加载多个内容
我正在使用以下代码来预加载 mp3:
$.ajax({
url: "boom.mp3",
success: function() {
//done
}
});
无论如何,我可以预加载多个元素(例如图像和 mp3)吗?
例如
$.ajax({
url: "boom.mp3", "moo.jpg",
success: function() {
//done
}
});
干杯!
I am using the following code to preload an mp3:
$.ajax({
url: "boom.mp3",
success: function() {
//done
}
});
Is there anyway I can have multiple elements preloaded (images and mp3 for example)?
e.g.
$.ajax({
url: "boom.mp3", "moo.jpg",
success: function() {
//done
}
});
Cheers!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您使用 jQuery 1.5,有两种新方法可以处理此问题:deferred 和 Promise。
使用 jQuery 延迟和 Promises 创建响应式应用程序
例如,要在您的实例中使用它,只需替换使用
load
的ajax
请求。If you are using jQuery 1.5, there are two new ways to handle this: deferred and promises.
Creating Responsive Applications Using jQuery Deferred and Promises
To use this in your instance, for example, just replace the
ajax
requests withload
.我的一个想法:收集数组中的所有文件名并循环遍历该数组。将收到的对象保存在另一个数组中并将其用于您想要的用途。
如果您在 url 参数中定义对象(用冒号分隔),也许会起作用。
An idea from me: Collect all filenames in an array and loop through the array. Save th received opjects in another array and use it for what you want.
Perhaps it will work if you define the object in the url parameter, seperated by colon.
阅读 beforeSend(jqXHR, settings)
Read beforeSend(jqXHR, settings)