我有一个iframe,为了访问父元素,我实现了以下代码:

window.parent.document.getElementById('parentPrice').innerHTML

如何使用jquery得到相同的结果? 更新:或者如何使用jquery访问iFrame父页?


当前回答

要在iFrame的父类中查找,使用:

$('#parentPrice', window.parent.document).html();

$()包装器的第二个参数是要搜索的上下文。默认为document。

其他回答

可能有点晚了,但我刚刚发现了这个神奇的jQuery插件https://github.com/mkdynamic/jquery-popupwindow。它基本上使用一个onUnload回调事件,所以它基本上监听子窗口的关闭,并将在那一点上执行任何必要的东西。所以真的没有必要在子窗口中写任何JS来传递回父窗口。

你可以使用window从iframe中访问父窗口的元素。父母是这样的:

// using jquery    
window.parent.$("#element_id");

也就是:

// pure javascript
window.parent.document.getElementById("element_id");

如果你有多个嵌套iframe并且你想要访问最上面的iframe,那么你可以使用window。上面像这样:

// using jquery
window.top.$("#element_id");

也就是:

// pure javascript
window.top.document.getElementById("element_id");

要在iFrame的父类中查找,使用:

$('#parentPrice', window.parent.document).html();

$()包装器的第二个参数是要搜索的上下文。默认为document。

是的,对我来说也很管用。

注意:我们需要使用window.parent.document

    $("button", window.parent.document).click(function()
    {
        alert("Functionality defined by def");
    });

如何使用jquery访问iFrame父页面

window.parent.document。

jQuery是JavaScript之上的库,而不是JavaScript的完全替代品。您不必将每一个JavaScript表达式都替换为包含$的表达式。