开发者

JS Iframe loader

开发者 https://www.devze.com 2023-02-15 00:19 出处:网络
I\'m looking for a way to use jQuery/js to show a \'Load开发者_JAVA技巧ing...\' message while an iframe is loading, when the iframe finished to load completely, the \'Loading...\' text should disappea

I'm looking for a way to use jQuery/js to show a 'Load开发者_JAVA技巧ing...' message while an iframe is loading, when the iframe finished to load completely, the 'Loading...' text should disappear.

Is that possible with jquery/js?

Note: I do not have any control on the website within the iframe.


<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

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号