Colorbox,iframe不适合我吗?

时间:2014-05-08 12:04:05

标签: jquery html5 iframe

我有一个更复杂的Colorbox,但作为测试,我甚至无法让它工作。

我的代码出了什么问题?我错过了什么吗?

HTML

<a class="cover" href="http://www.bbc.co.uk">
    bbc
</a>

的JavaScript

$(document).ready(function(){
  $(".cover").colorbox({
    iframe: true,
    innerWidth: 400,
    innerHeight: 400
  });
});

1 个答案:

答案 0 :(得分:0)

您的代码是否在jquery ready()事件中设置?

<script>
  $(document).ready(function() {

      $(".cover").colorbox({ iframe:true, innerWidth:"400px", innerHeight:"400px"});

  });
</script>