这篇文章主要为大家详细介绍了JS IFRAME动态加载触发onload事件解析,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
*
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
<script>
var iframe = document.createElement("IFRAME");
document.body.appendChild(iframe);
iframe.src = "http://www.q1010.com";
if (iframe.attachEvent) {
iframe.attachEvent("onload", function () {
alert("Local iframe is now loaded.");
});
} else {
iframe.onload = function () {
alert("Local iframe is now loaded.");
};
}
</script>
// 来自:四海网(www.q1010.com)
本文来自:http://www.q1010.com/174/1631-0.html
注:关于JS IFRAME动态加载触发onload事件解析的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:IFRAME,onload
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。