gpt4 book ai didi

javascript - 将预加载 img 转换为 iframe

转载 作者:行者123 更新时间:2023-11-28 12:07:44 29 4
gpt4 key购买 nike

$('<img />')
.attr('src', val)
.attr('width', "400")
.load(function(){
$('.showdata').append( $(this) );
}
);

这对于图像来说非常有效,这将如何将 1:1 转换为 iframe?这里是快速的jsfiddle: http://jsfiddle.net/ET8Gw/

最佳答案

与 Image 对象不同,IFrame 在成为 DOM 的一部分之前不会加载。

要解决这个问题,您可以隐藏该元素,将其添加到 DOM,然后在加载事件触发时显示它:

var val = "http://dumb.com/";
$('<iframe />')
.hide()
.attr('src', val)
.attr('width', "500")
.load(function(){
$(this).show();
})
.appendTo(".showdata");

http://jsfiddle.net/ET8Gw/1/

关于javascript - 将预加载 img 转换为 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7390666/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com