点击时将iframe中的网址重定向到父窗口

时间:2014-05-26 16:40:30

标签: javascript jquery html iframe

我正在使用我正在使用的平台自动生成数据,因此我无法直接访问Iframes链接。所以我要做的就是编写一个脚本,在Iframe中获取linka值,然后使用link重定向父页面。

一切都在同一个域上,我只是无法编辑自动生成数据的页面,所以我使用的是iframe。

这是我正在使用/试图实现的脚本,我看不出我做错了什么:

<script>
    function replaceLoad(oIframe) {
        oIframe.onload = function () {
            document.getElementById("replaceLoad").contentWindow.location = "javascript:moveMe()"
        }
    }
</script>

这是iframe html:

<iframe scrolling="no" src="http://www.discoverhomefinder.com/dljones/homes-for-sale/AZ/Anthem?wmode=opaque" frameborder="0" style="border: 0px none; margin-left: 0px; height: 3900px; margin-top: -12%; width: 100%;" onload="replaceLoad(this)">
</iframe>

1 个答案:

答案 0 :(得分:0)

据我了解,您只想将父页面重定向到iframe的网址, 你可以在你的功能中做到这一点:

function replaceLoad(oIframe) {
    window.location.href = oIframe.src;
}