我正在尝试实现jquery插件Colorbox。 使用collorbox我希望在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在彩盒窗口中打开?
答案 0 :(得分:0)
得到解决方案,iframe是需要使用的属性。
$(".iframe").colorbox({iframe:true, width:"80%", height:"80%"});