在onclick事件Jquery中从Iframe中选择父窗口中的元素

时间:2017-02-22 07:19:24

标签: javascript jquery iframe jquery-selectors

在iframe中查看此代码:

$(document).on('click', "#elementfromparentwindow",function (e) {

});

如何在Iframe中的点击事件中从父窗口中选择元素?

2 个答案:

答案 0 :(得分:0)

应该通过window.parent完成,如下所示:

    var parentItem = window.parent.document.getElementById('elementfromparentwindow'); 

    $(parentItem).on('click', function(){

    });

答案 1 :(得分:0)

没关系。刚刚开始工作..

$("#elementfromparentwindow",window.parent.document).on('click',function (e) {

});