admin管理员组文章数量:1326099
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 pletely, the 'Loading...' text should disappear.
Is that possible with jquery/js?
Note: I do not have any control on the website within the iframe.
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 pletely, the 'Loading...' text should disappear.
Is that possible with jquery/js?
Note: I do not have any control on the website within the iframe.
Share Improve this question asked Mar 4, 2011 at 13:59 Or WeinbergerOr Weinberger 7,48223 gold badges72 silver badges117 bronze badges1 Answer
Reset to default 8<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()});
本文标签: javascriptJS Iframe loaderStack Overflow
版权声明:本文标题:javascript - JS Iframe loader - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742193431a2430637.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论