这个问题以前可能见过。但在我的情况下,我没有获得成功。我在 Iframe 中使用示例外部链接加载了本地 HTML 文件。
<a href="http://www.boutell.com/">sample.com</a>
代码:
<iframe id="iframe_Id" src="sample.html"
style="background-color:white; height:100%; width:100%;" onload="Load()"; ></iframe>
function Load() {
alert("loaded");
var linkchange = document.getElementById("iframe_Id").contentWindow.location;
alert(linkchange);
}
单击外部链接时,我需要特定锚标记的 url 值。
编辑:我知道由于安全策略,当它是不同的域时我们无法获取 URL。但我需要来自本地 HTML 页面的值(我点击的链接 URL)。在这种情况下我没有尝试过
需要任何帮助。