ASP.NET中 iframe 点击里面的连接在iframe外的整个网页打开
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ASP.NET中 iframe 点击里面的连接在iframe外的整个网页打开相关的知识,希望对你有一定的参考价值。
ASP.NET中 iframe在一个页面内 点击iframe里面的连接在iframe外的整个网页打开 在本页面打开 如何实现!
在 iframe 的链接里写入 target="_parent" ,例如:<a href="xxx.aspx" target="_parent">在外面显示</a>
或者
<a href="xxx.aspx" target="_top">在外面显示</a> 参考技术A <a href="xxx.aspx" target="_self">在外面显示</a>
asp.net iframe不刷新怎么办?
我在超链接上写上了onclick事件
然后用javascript写的传url给iframe
可我点开的网站还是老的信息 我手动刷新才出来新的信息
如何在我点了超链接之后马上刷新一下?
一楼回答的答案没有解决我的问题。第一种方法没有反应,第二种方法连iframe里的东西也不出来了
其中有个方法是一直循环加载 可以加上for循环 只让加载一次 这样就可以了 问题解决了
this.location = this.location;
或是:
window.opener.location.reload();
以刷新页面。 参考技术A 既然是简单的url,为什么不用<a>?
<iframe name="aaa"></iframe>
<a href="a.aspx" target="aaa">dddd</a>
js代码:
aaa.location.href="a.aspx"; 参考技术B document.frames("iframe1").location.reload(); 参考技术C <head>
<meta http-equiv="refresh" content="1">
</head>
每隔一秒刷新一次 参考技术D 不应该啊。
以上是关于ASP.NET中 iframe 点击里面的连接在iframe外的整个网页打开的主要内容,如果未能解决你的问题,请参考以下文章