[removed] vs <body onload=“”/>

后端 未结 13 1791
盖世英雄少女心
盖世英雄少女心 2020-11-22 13:45

What exactly is the difference between the window.onload event and the onload event of the body tag? when do I use which and how shoul

13条回答
  •  情话喂你
    2020-11-22 14:25

    window.onload - Called after all DOM, JS files, Images, Iframes, Extensions and others completely loaded. This is equal to $(window).load(function() {});

    body onload="" - Called once DOM loaded. This is equal to $(document).ready(function() {});

提交回复
热议问题