我的iframe包含一个名为(page.html)的简单网页,源代码只是:
<html>
<head>
</head>
<body>
<a href="http://localhost/"></a>
</body>
</html>
在包含iframe的页面中,我希望javascript代码获取iframe中点击链接的网址(href)。
我父网页的当前代码如下:
<html>
<head>
</head>
<body>
<iframe id="iframe" src="page.html"></iframe>
<script type="text/javascript">
document.getElementById("iframe").contentDocument.addEventListener("click",
function(event)
{
event = window.event || event;
console.log(event.target.href);
},
false
);
</script>
</body>
</html>
=&GT;但它不起作用。
有你的想法吗?
提前感谢您,亲切。