我基本上需要以某种方式向用户显示他在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;