JQuery判断子iframe何时加载完成解决方案_jquery

WBOY
Release: 2016-05-16 17:25:00
Original
1087 people have browsed it

项目中遇到场景:一个按钮要在子iframe加载完成之后才能被点击,这是就需要知道iframe何时加载完成,用JQuery很简单就能实现,代码如下:

复制代码代码如下:

var isOnLoad = true;
youIFrame.attr("src", url);
youIFrame.load(function() {
isOnLoad = false;// 加载完成
alert('load success');
});

已验证通过!
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!