将预加载 img 转换为 iframe
$('<img />')
.attr('src', val)
.attr('width', "400")
.load(function(){
$('.showdata').append( $(this) );
}
);
这对于图像来说非常有效,这将如何将 1:1 转换为 iframe? 这里是快速的jsfiddle: http://jsfiddle.net/ET8Gw/
$('<img />')
.attr('src', val)
.attr('width', "400")
.load(function(){
$('.showdata').append( $(this) );
}
);
This works perfectly for images, how would this convert 1:1 to iframes?
Here quick jsfiddle:
http://jsfiddle.net/ET8Gw/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
与 Image 对象不同,IFrame 在成为 DOM 的一部分之前不会加载。
要解决这个问题,您可以隐藏该元素,将其添加到 DOM,然后在加载事件触发时显示它:
http ://jsfiddle.net/ET8Gw/1/
Unlike Image objects, IFrames will not load until they are part of the DOM.
To get around this you can hide the element, add it to the DOM, and when the load event fires show it:
http://jsfiddle.net/ET8Gw/1/
http://jsfiddle.net/ET8Gw/5/
http://jsfiddle.net/ET8Gw/5/
尝试这样的事情:
它不能跨域工作。
Try something like this:
It will not work cross domain.
我在 jsFiddle 上工作
: http://jsfiddle.net/ET8Gw/22/
I got it working doing this
jsFiddle: http://jsfiddle.net/ET8Gw/22/