如何将iframe的内容复制到弹出窗口中?
有没有办法将 iframe 的内容复制到 jQuery 的弹出窗口中?
$(popUpWindow.document).append($('#iframe1').contents());
$(popUpWindow.document).append($('#iframe1').contents().find('body').html());
他们都没有工作!
谢谢
Is there any way to copy iframe's content into popup window in jQuery?
$(popUpWindow.document).append($('#iframe1').contents());
$(popUpWindow.document).append($('#iframe1').contents().find('body').html());
All of them are not working!
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您实际上需要做的只是获取 iframe 内容,您可以尝试比 jquery 更低级别的东西:原始 javascript!
但我想象 JQuery 的底层也会发生类似的事情。
If all that you need to do is actually obtain the iframe contents, you can try something a bit more low level than jquery: raw javascript!
But I would imagine something similar is going on underneath the hood in JQuery.
请说明您正在使用哪个弹出窗口以及内容的含义。
jquery-ui 弹出窗口(对话框)HTML 示例
:
jQuery:
Please mention which popup you are using and by content what do you mean.
Example for jquery-ui popup (dialog)
HTML:
jQuery: