簡體   English   中英

iframe 加載太快

[英]Iframe Load Too FAST

我設置腳本來加載 iframe,但我看到腳本加載到快速 iframe 內容,我不知道如何設置后台加載所有 css 圖像內容,然后顯示完整的 iframe 內容?

我的代碼:

<style>
#test123 {
  display: none;
}
</style>
<script>
jQuery(document).ready(function( $ ){
$('iframe').on('load', function() {
    jQuery("#test123").css("display","block");
},)
});
</script>
<iframe id="test123" src="https://www.mydomain.co/iframe" height="200" width="300"></iframe>

為什么不嘗試使用 setTimeOut 函數來延遲 iframe? 不花哨,但它應該工作。

<script>
jQuery(document).ready(function( $ ){
   $('iframe').on('load', function() {
      setTimeout(function () {
         jQuery("#test123").css("display","block");
      }, 2000); // 2 seconds
   },)
});
</script>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM