jQuery 添加带有内容的 iFrame
我有这样的问题。 我需要在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
像这样调用jquery的ready方法后你的问题就会解决
your problem will be solve after calling jquery's ready method like this
如果你将该行分成两部分,会发生什么:
然后在创建新的 iframe 之前将选择器更改为正确的,而不是将其插入到 DOM 中并在其上调用 fancybox,但这应该可以工作:
What happens if you split that line in two:
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:
这个问题已经过去了,但这里有另一个解决方案:
Has passed time of this question, but here is another solution: