模态内部的链接

时间:2015-12-10 13:48:56

标签: javascript jquery twitter-bootstrap bootstrap-modal

我在模态中有一个模态和一个链接。是否有可能不在模态中加载链接的目标?因为当我点击链接时,现在发生了什么。

我想在浏览器中加载目标,就像普通链接一样。我尝试添加data-dismiss =" modal"无论有没有href,它都不会解雇模态。

尝试了一些onclick javascript来重定向,但不知怎的,它像往常一样在模态中加载了内容:

  

的onclick =" window.location.href =' the_link_to_go_to.html&#39 ;;"

2 个答案:

答案 0 :(得分:1)

据推测,“模态”是一个iframe。

要突破框架并在顶层打开文档,请使用目标属性。

<a href="http://example.com" target="_top">...</a>

答案 1 :(得分:1)

你为什么不试试

onclick="window.open(yourLinkHere)"

//or

<a href="yourLinkHere" target="_blank">go to my link</a>