我在我的网站上使用jQuery colorbox(http://www.jacklmoore.com/colorbox/example3/)。 我正在尝试添加多个iframe框。除了里面没有NEXT / PREV按钮外,它正在工作。
这是我的代码:
<script>
$(document).ready(function(){
$('#group1').colorbox({
arrowKey: true,
open: true,
opacity: 0.5,
iframe: true,
innerWidth:1000,
innerHeight:600,
scrolling:false,
rel:"group1"
});
});
</script>
<a id="group1" href="http://tokobagus.com">Tokobagus</a>
<a id="group1" href="http://berniaga.com">Kaskus</a>
正如你所看到的,有arrowKey:在那里,但是箭头仍未显示。有什么想法吗?
谢谢...
答案 0 :(得分:3)
由于id
是唯一的,因此请尝试将其更改为两个锚点的类:
<a class="group1" href="http://tokobagus.com">Tokobagus</a>
<a class="group1" href="http://berniaga.com">Kaskus</a>
并使用$('.group1')
代替$('#group1')
答案 1 :(得分:0)
您必须使用class
代替id
。检查
http://jsfiddle.net/2kda6/