我实际上是一个主页。我的登录区域位于Iframe中,这是我的代码:
<link type="text/css" media="screen" rel="stylesheet" href="colorbox.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script src="colorbox/jquery.colorbox.js"></script>
<script>
$(document).ready(function(){
$(".example7").colorbox({width:"85,5%", height:"85%",iframe:true});
});
和
<a href="http://www.google.at"><button>Klick</button></a>
我的问题是,我希望新链接不要在iframe窗口中打开。 我怎么能这样做?
答案 0 :(得分:0)
<a href="..." target="_blank">...</a>
会在新页面中打开该链接。
另请参阅:https://developer.mozilla.org/en/HTML/Element/a#attr-target