5

我将 Colorbox.min.js 文件从 v1.3.19 更新到 v1.4.6,但我的一些颜色框不起作用。我在页面和 Chrome 的控制台上没有收到任何错误。

我检查了更改日志,但没有找到分析器。你能帮忙吗?

(我使用 jQuery 1.7.2)

  • 这不起作用:
<a href="#" onclick="emailDialog()">e-mail</a>
function emailDialog(){  
    $.fn.colorbox({  
        width:"700px", height:"550px",  
        iframe:true, href:"/contact",  
        opacity:0.6  
    });  
}
  • 这很好用:
<a href="http://example.com/1.jpeg" class="colorbox-avatar" title="some title" rel="nofollow" >photo</a>
$(document).ready(function() {  
    $(".colorbox-avatar").colorbox({  
        rel:'colorbox-avatar',  
        scrolling: false,  
        current: "",  
        slideshow:true, slideshowAuto:false,  
        opacity:0.6,  
        width:"60%" , height:"60%"  
    });  
}  
4

1 回答 1

1

调用它没有.fn... 所以$.colorbox({...})

$.fn用于开发 jQuery 插件,实际上只是的简写$.prototype)。

function emailDialog(){
    $.colorbox({
        width:"700px", height:"550px",
        iframe:true, href:"/contact",
        opacity:0.6
    });   
}

jsfiddle 演示

于 2013-03-28T17:43:05.750 回答