如何刷新iframe当前活动网址的显示

时间:2017-11-05 17:31:12

标签: javascript iframe

我基本上需要以某种方式向用户显示他在iframe中浏览的页面。通过显示当前浏览的Iframe URL的URL源地址。在我的代码中,当浏览到Iframe中的任何其他链接时,URL不会刷新。



<html><body>
<iframe id="MyIframe" name="MyIframe" src="https://hello.com" 
style="height: 90%; width:100%; border: 0px; margin: 0 0 0 0;"> 
</iframe><br>
<script type="text/javascript" language="JavaScript"> 
document.write('<input type="text" style="width:100%; " '); 
document.write(' value="' + document.getElementById('MyIframe').src+ '">'); 
</script>
</body></html>
&#13;
&#13;
&#13;

0 个答案:

没有答案