我在我的aspx项目中使用了Colorbox,并使用了示例1中的Iframe。我复制了html页面中提到的css和js文件,但是当点击链接时,它会在浏览器中打开页面而我想要它会像示例中一样显示在框中。
这是代码 -
<a class='iframe' href="#" onclick="$.colorbox({href:'http://wikipedia.com', iframe:true, width:'90%', height:'90%'});">Click here</a>
答案 0 :(得分:0)
您需要在页面上的元素中渲染颜色框:
<a class='iframe' href="#" onclick="$('#container').colorbox({href:'http://wikipedia.com', iframe:true, width:'90%', height:'90%'});">Click here</a>
<div id="container"></div>
答案 1 :(得分:0)
你必须这样做 -
<a href="your_link" target="frame1"> Click me </a>
<iframe id="frame1" src="your_default_src"></iframe>