如何在Iframe中点击任何链接时获取网址?

时间:2013-08-25 23:27:13

标签: javascript html url iframe

我正在尝试在iframe中检索任何点击的网址而不修改链接代码。我的目标是获取用户在iframe正文之外的iframe中点击的网址。我已经尝试了以下内容:

document.write(location.href);
document.write(window.location.href);
document.write(window.location);
document.write(document.URL);
document.write(document.location);

1 个答案:

答案 0 :(得分:0)

document.getElementById("myFrame")
.contentDocument.addEventListener("click", yourfunction, false);

请注意,这可能仅适用于来自同一domain的内容。