0

附加信息 1
控制台中未显示任何错误。此外,此问题仅在 Windows XP 上的 IE8 中发生。IE8 中的 Windows 7 运行良好。

问题
我要求 colorbox 打开一个复杂的 URL

$('.manage_locations').colorbox({
    innerWidth: '1100px',
    innerHeight: '505px',
    iframe:true,
    href:'/admin_console/assignments_groups_group_information_manage_locations.cfm?gid=3&CFID=22701&CFTOKEN=83690449'});

该系统内置于 ColdFusion。当我单击触发器.manage_locations时,它会启动颜色框,但加载器只是旋转并且从不加载 iFrame 内容。我已将其范围缩小到问题是 URL 中的数据之后的? 任何想法如何为 IE8 更正此问题?

任何帮助将不胜感激。谢谢你。

4

1 回答 1

2

通过将 fastIframe 属性设置为 false 以延迟加载图形的删除,直到 iframe 元素的 onload 事件触发,该问题已得到纠正。例子:

$('a.myIframe').colorbox({iframe:true, width:500, height:500, fastIframe:false});
于 2012-04-30T16:02:36.110 回答