jQuery 将 iframe 中的元素附加到其主体父窗口。

发布于 2024-12-08 05:19:54 字数 285 浏览 0 评论 0原文

我有 elm.appendTo('#wrap');

其中 elm 是 iframe 内单击图像的 jquery 对象。我想将该图像附加到

中,其中 #wrap 是 iframe 外部页面正文中的 div。所以基本上当我双击 iframe 内的图像时,我希望该图像附加到 iframe 外部的 。正文和 iframe 链接都位于同一域中。

I have
elm.appendTo('#wrap');

where elm is a jquery object of the clicked image inside iframe. I want to append that image to a <div id="wrap"> where #wrap is a div in the body of the page outside iframe. So basically when i double click on an image inside iframe, i want that image to append to <body> outside iframe. Both body and iframe link are on the same domain.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

季末如歌 2024-12-15 05:19:54

前提是该框架及其父框架位于同一域中。请参阅SOP


Execute either of the following lines from within the iframe (parent can be replaced by top, if the parent document is in the top window):

//If the parent document doesn't have JQuery:
elm.appendTo(parent.document.getElementById("wrap"));

//Only if JQuery is included at the parent
elm.appendTo(parent.$("#wrap"));
parent.$("#wrap").append(elm);


If you want to grab the element inside the frame, from the context of the parent, use either of the following:

假设 #elm 是您的图像的 ID。

// If JQuery is defined at the frame AND the parent (current document)
$("#wrap").append(frames[0].$("#elm"));
frames[0].$("#elm").appendTo($("#wrap"));

frames[0] 指当前文档中的第一帧。如果您在框架上设置了 name 属性,则还可以使用 frames.frame_nameframes["frame_name"]


Final example: Adding a click event listener to the elm JQuery (image) object:

elm.click(function(){
    parent.$("#wrap").append(this);
})

Provided that the frame and its parent are at the same domain. See SOP


Execute either of the following lines from within the iframe (parent can be replaced by top, if the parent document is in the top window):

//If the parent document doesn't have JQuery:
elm.appendTo(parent.document.getElementById("wrap"));

//Only if JQuery is included at the parent
elm.appendTo(parent.$("#wrap"));
parent.$("#wrap").append(elm);


If you want to grab the element inside the frame, from the context of the parent, use either of the following:

Assume #elm to be the ID of your image.

// If JQuery is defined at the frame AND the parent (current document)
$("#wrap").append(frames[0].$("#elm"));
frames[0].$("#elm").appendTo($("#wrap"));

frames[0] refers to the first frame within the current document. If you've set a name attribute on your frame, you can also use frames.frame_name, or frames["frame_name"].


Final example: Adding a click event listener to the elm JQuery (image) object:

elm.click(function(){
    parent.$("#wrap").append(this);
})
注定孤独终老 2024-12-15 05:19:54

尝试从另一种方式进行处理:从父窗口中找到要附加的元素,然后使用 .append() 并选择 iframe 中的元素。例如:

$("#wrap").append($("iframe #myElement"));

Try going at it from the other way: from the parent window, find the element you want to append to and then use .append() and select the element in the iframe. For example:

$("#wrap").append($("iframe #myElement"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文