我有一个Ifram,我想在用户点击内容时获取其当前位置网址。
<iframe src="http://www.Mysite.com/login.aspx" width="100%" height="800" id="iframeid" ></iframe>
<script>
$(document).ready(function () {
$("#iframeid").load(function () {
try{
alert(this.contentWindow.location.href);// do what you want with this location
}
catch (err)
{
alert(err.message);
}
});
});
</script>
我使用此代码但不返回任何值。
document.getElementById("iframe_id").get(0).contentWindow.location.url
document.getElementById("iframe_id").contentWindow.location.url
document.getElementById("iframe_id").documentWindow.location.href
我收到错误:“权限被拒绝访问属性'href'”
如何获取当前位置网址?