0

我正在尝试实现 jquery 插件 Colorbox。使用颜色框我希望在颜色框窗口中打开另一个 HTML 页面。但它不起作用。这是代码:

<script type="text/javascript" src="jquery.colorbox.js"></script>
<script>


$("#text1").colorbox({href:"hello.html" width:500, height:500});        

</script>

这是 HTML 代码。

<div id='container'>
<div id="sign1" class="sign" style="background-image:url('images/log.jpg'); position:absolute; width:1440px; height:25px;">
</div>
<div id='text11' class='text'><font color='white'><a id='text1' href="hello.html"> Sign Up </div></font>
</div>

如何让 hello.html 在颜色框窗口中打开?

4

1 回答 1

0

得到了解决方案,iframe 是一个需要使用的属性。

$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});
于 2013-09-14T12:32:01.773 回答