IE6 使用 Accordion jQuery 插件加载 img
仅在 IE6 中,使用 Accordion jQuery 插件打开 DIV 元素,每次单击时都会加载 DIV 内的所有 img 元素(也是背景),以打开或关闭所选元素。
示例:
有10个关闭的DIV,您点击第2个打开它,您可以在状态栏中看到请求加载这10个DIV内的所有img元素,您单击将其关闭并重新执行。如果您对 2 或 3 个 DIV 执行此操作,它甚至可以锁定页面。
托管img元素如何通过css加载未显示的元素? 如果我预加载img,这是一样的事情
在Firefox或IE7、IE8中没有问题
谢谢
In IE6 only, using Accordion jQuery plugin to open a DIV element, all img elements (backgrounds too) inside the DIV are loaded on each click, to open or close the chosen element.
Example:
There are 10 closed DIVs, you click on the 2nd one to open it, you can see in the status bar the requests to load all img elements inside the 10 DIVs, you click to close it and do it again. If you do it for 2 or 3 DIVs it even can lock the page.
How is managed img elements loading not displayed elements by css?
If i pre-load img, it's the same thing
No problem in Firefox or IE7, IE8
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将其放入您的代码中,应该可以解决问题:
问题在于 Accordion 使用背景图像,而 IE6 的缓存设置有问题。您可以在网络上浏览以获取更多信息。
Put this in your code, that should do the trick:
The problem lies with the fact the Accordion use background images for which IE6 as problem with the cache settings. You can browse on the web for more info on this.
检查您的设置。听起来您正在使用典型的开发人员设置“每次访问页面时”加载页面,这使得 IE6 每次都会重新下载图像。您的标准用户将具有“自动”设置,这将减轻此错误。
Check your settings. It sounds like you're using the typical developer setting to load pages "every time i visit the page", which make IE6 redownload the images every time. Your standard users will have the setting "automatically", which will mitigate this error.