JS Iframe loader

前端 未结 1 1577
迷失自我
迷失自我 2021-01-14 23:13

I\'m looking for a way to use jQuery/js to show a \'Loading...\' message while an iframe is loading, when the iframe finished to load completely, the \'Loading...\' text sho

相关标签:
1条回答
  • 2021-01-14 23:53
    <script>
    function hide() {
      document.getElementById('loading').style.display='none';
    }
    </script>
    <iframe onLoad="hide()" ... ></iframe>
    <div id="loading">Please wait</div>
    

    jquery:

    $("iframe").load(function() { $("#loading").toggle()});
    
    0 讨论(0)
提交回复
热议问题