Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Colorbox 正在从 IE 发出重复的 AJAX 请求,而对于 Firefox 来说同样有效。它是浏览器错误还是 Colorbox 本身的错误?
我正在使用这样的代码
$(".iframe").colorbox(href:"www.google.com",speed:0,IFrame:true,fastIframe:false,Open:true,OverlayClose:false)
任何建议。
您发布的代码在语法上是错误的,您正在传递属性但没有对象,选项也是驼峰式,属性区分大小写,阅读文档并使用正确的属性。
$(".iframe").colorbox({ href: "www.google.com", speed: 0, iframe: true, fastIframe: false, open: true, overlayClose: false });