js中 onreadystatechange 和 onload的区别

Posted 大漠孤魂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中 onreadystatechange 和 onload的区别相关的知识,希望对你有一定的参考价值。

IE的script 元素只支持onreadystatechange事件,不支持onload事件。

FF的script 元素不支持onreadystatechange事件,只支持onload事件。

如果要在一个<script src="xx.js"> 加载完成执行一个操作,FF使用onload事件就行了,IE下则要结合onreadystatechange事件和this.readyState,

以下是IE的一个例子:
<script type="text/javascript" src="xx.xx" onreadstatechange="if(this.readyState==‘load‘) alert(‘loaded‘);"></script>

  

this.readyState的值为‘loaded‘或者‘complete‘都可以表示这个script已经加载完成.

如何结合IE和FF的区别?参考一下jquery的源码:
var script = document.createElement(‘script‘);

script.src="xx.js";

script.onload = script.onreadystatechange = function(){

     if(  ! this.readyState     //这是FF的判断语句,因为ff下没有readyState这人值,IE的readyState肯定有值

          || this.readyState==‘loaded‘ || this.readyState==‘complete‘   // 这是IE的判断语句

    ){

          alert(‘loaded‘);

    }

};

  



以上是关于js中 onreadystatechange 和 onload的区别的主要内容,如果未能解决你的问题,请参考以下文章

无法让 vanilla JS onreadystatechange 函数/readyState 4 工作

onreadystatechange和onload区别分析

加载顺序 ready onload onreadystatechange

js报错:Ajax 中onreadystatechange在ie7及以上浏览器兼容吗,为什么没有反应?求大神

js数据加载完成的方法

Ajax中onload和onreadystatechange两种请求方式的区别