使用 jQueryUI-tabs 预加载 AJAX 内容的图像
所以我有一个使用 ui-tabs 的非常好的应用程序。问题是,我一生都无法找到一种在显示选项卡面板之前在我的 ajax 内容中预加载图像的方法。我能想到的唯一方法是创建自己的 ajax 功能来加载选项卡面板内容,并在 ajax 调用中添加类似的内容:
success: function(response){
$(response).find('img').preload({
onFinish: function(){
currentTabPanel.show();
}
});
}
但我认为一定有更好的方法来解决这个问题使用 jQueryUi.tabs() 对象中内置的 AJAX 方法和事件..我只是认为我没有看到它...arg..有什么想法吗?
So I've got a pretty nice application going using ui-tabs.. problem is, I cannot for the life of me figure out a way to pre-load images in my ajax content before the tab panel is shown. The only way I can think of is to create my own ajax functionality for the loading of tab-panel content, and adding something like this to the ajax call:
success: function(response){
$(response).find('img').preload({
onFinish: function(){
currentTabPanel.show();
}
});
}
But I'm thinking there's GOT to be a better way of going about this using the built in AJAX methods and events in the jQueryUi.tabs() object.. I just don't think I'm seeing it... arg.. any ideas??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
什么是回应?它代表什么?
假设您有一个表示图像的对象列表,称为 imgList:
What is response? What does it represent?
Assume you have a list of objects representing images called imgList:
这是我有时使用的一个肮脏的小脚本,但它效果很好:
我不会对大量大图像执行此操作,因为在图像完成之前页面不会完成加载,但如果您必须准备好它们,它就可以工作。只需将其放入您的索引即可:)
This is a dirty little script I use sometimes but it works great:
I wouldn't do this for lots of big images because the page won't finish loading until the images are done, but if you have to have them ready, it works. Just put it in your index :)