5
我將Colorbox.min.js文件從v1.3.19更新爲v1.4.6,我的一些colorbox不起作用。我在頁面和Chrome的控制檯上沒有發現任何錯誤。Colorbox在從v1.3.19更新到v1.4.6後無法使用
我檢查了changelog但我沒有找到安塞。你能幫忙嗎?
(我使用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%"
});
}
謝謝。這解決了我的問題。 – trante