gpt4 book ai didi

javascript - jQuery - 使用 replaceWith 时显示加载消息

转载 作者:行者123 更新时间:2023-11-28 05:22:04 25 4
gpt4 key购买 nike

我正在尝试在 div 中加载 PPT,同时将 replaceWith 与谷歌文档一起使用,如下所示:

$("#u1").click(function() {
$(".cuerpo").replaceWith('<div class="cuerpo">' + '<iframe src="http://docs.google.com/gview?url=http://**************.pptx&embedded=true" style="width:600px; height:500px;" frameborder="0"> </iframe>' + "</div>");
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

问题是完全加载需要几秒钟,我需要显示一些消息,说明 div 正在加载,是否可以这样做?

最佳答案

像这样使用 jQuery 加载的回调方法:

$('iframe').load(function(){
// Iframe has been loaded...Do whatever you want.

});

关于javascript - jQuery - 使用 replaceWith 时显示加载消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37466888/

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