-1

Colorbox 正在从 IE 发出重复的 AJAX 请求,而对于 Firefox 来说同样有效。它是浏览器错误还是 Colorbox 本身的错误?

我正在使用这样的代码

$(".iframe").colorbox(href:"www.google.com",speed:0,IFrame:true,fastIframe:false,Open:true,OverlayClose:false)

任何建议。

4

1 回答 1

0

您发布的代码在语法上是错误的,您正在传递属性但没有对象,选项也是驼峰式,属性区分大小写,阅读文档并使用正确的属性。

$(".iframe").colorbox({
    href: "www.google.com",
    speed: 0,
    iframe: true,
    fastIframe: false,
    open: true,
    overlayClose: false
});
于 2013-05-01T12:18:55.847 回答