如果网站已加载,我想自动打开彩盒(http://www.jacklmoore.com/colorbox/)。它应该打开给一个href-list的第一个链接。
HTML:
<a class="cb cboxElement" rel="aktuelles" href="aktuelles.php?id=38">
<a class="cb cboxElement" rel="aktuelles" href="aktuelles.php?id=40">
<a class="cb cboxElement" rel="aktuelles" href="aktuelles.php?id=39">
jquery的:
$(document).ready(function(){
$("a.cb").colorbox({iframe:true, innerWidth:760, innerHeight:640});
});
有人能帮助我吗?
谢谢+最好的问候 托马斯
答案 0 :(得分:0)
只需将open属性添加到colorbox配置对象:
$(document).ready(function(){
$("a.cb").colorbox({iframe:true, innerWidth:760, innerHeight:640, open: true});
});