jQuery 添加带有内容的 iFrame

发布于 2024-10-10 11:47:06 字数 672 浏览 2 评论 0原文

我有这样的问题。 我需要在 fancybox 中打开 iframe (我需要 iframe 因为我需要浏览打开的文档中的链接并停留在 fancybox 中), 但我想将内容从变量放入 iframe,而不是通过 src 属性(我已经通过 AJAX 获取内容(我需要在将内容放入 iframe 之前对内容进行一些检查,所以没有办法代替 AJAX 来做到这一点)查询),所以我不需要再查询)。

Fancybox 不允许将 'content' 属性与 'type':'iframe' 一起使用。所以我决定动态创建 iframe,将我的内容插入其中,并通过 fancybox 将 iframe 显示为常规块。

这就像

jQuery('<iframe id="someId"/>').appendTo('body').contents().find('body').append(content);

And than

jQuery('<iframe id="someId"/>').fancybox();

但第一部分不起作用。我可以看到添加到页面的 iframe,但没有任何内容(我在可变内容中有完整的 HTML 页面,但当我尝试仅附加一些文本时,它不起作用)。

我做错了什么?

也许还有另一种方法可以满足我的需要?

I've such a problem.
I need to open iframe in fancybox (I require iframe because I need to browse through links in the opened document and stay in fancybox),
but I want to put content into iframe from variable, not through src attribute (I've already got content by AJAX (I need to do some checks on content before putting it to iframe, so there are no way to do it instead of AJAX query), so I do not need one more query).

Fancybox does not allow to use 'content' attribute with 'type':'iframe'. So I decided to create iframe dynamically, insert my content into it, and show iframe by fancybox as a regular block.

It's like

jQuery('<iframe id="someId"/>').appendTo('body').contents().find('body').append(content);

And than

jQuery('<iframe id="someId"/>').fancybox();

But the first part does not work. I can see the iframe that was added to page but without any content (I have full HTML page in variable content, but when I try to append just some text it doesn't work as well).

What I've done wrong?

Maybe there is another way to do what I need?

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

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

发布评论

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

评论(3

水溶 2024-10-17 11:47:06

像这样调用jquery的ready方法后你的问题就会解决

<script type="text/javascript">
$(function(){
$('<iframe id="someId"/>').appendTo('body');
$('#someId').contents().find('body').append('<b>hello sajjad</b>');
});
</script>

<iframe id="someId"></iframe>

your problem will be solve after calling jquery's ready method like this

<script type="text/javascript">
$(function(){
$('<iframe id="someId"/>').appendTo('body');
$('#someId').contents().find('body').append('<b>hello sajjad</b>');
});
</script>

<iframe id="someId"></iframe>
始终不够爱げ你 2024-10-17 11:47:06

如果你将该行分成两部分,会发生什么:

jQuery('<iframe id="someId"/>').appendTo('body');
jQuery('#someId').contents().find('body').append(content);

然后在创建新的 iframe 之前将选择器更改为正确的,而不是将其插入到 DOM 中并在其上调用 fancybox,但这应该可以工作:

jQuery('#someId').fancybox();

What happens if you split that line in two:

jQuery('<iframe id="someId"/>').appendTo('body');
jQuery('#someId').contents().find('body').append(content);

Then change your selector to be correct, before it was creating a new iframe, not inserting it in the DOM and the calling fancybox on it, however this should work:

jQuery('#someId').fancybox();
白况 2024-10-17 11:47:06

这个问题已经过去了,但这里有另一个解决方案:

var ifrm = document.createElement("iframe");
document.body.appendChild(ifrm);
ifrm.id = "someId"; // optional id
ifrm.onload = function() {
    // optional onload behaviour
}
setTimeout(function() {
    $(ifrm).contents().find("body").html(content);
}, 1);

Has passed time of this question, but here is another solution:

var ifrm = document.createElement("iframe");
document.body.appendChild(ifrm);
ifrm.id = "someId"; // optional id
ifrm.onload = function() {
    // optional onload behaviour
}
setTimeout(function() {
    $(ifrm).contents().find("body").html(content);
}, 1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文