我正在尝试在iframe中检索任何点击的网址而不修改链接代码。我的目标是获取用户在iframe正文之外的iframe中点击的网址。我已经尝试了以下内容:
document.write(location.href);
document.write(window.location.href);
document.write(window.location);
document.write(document.URL);
document.write(document.location);
答案 0 :(得分:0)
document.getElementById("myFrame")
.contentDocument.addEventListener("click", yourfunction, false);
请注意,这可能仅适用于来自同一domain的内容。