我正在尝试实现 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 在颜色框窗口中打开?