Window.onload and $of function of {

  • 2020-03-26 21:48:24
  • OfStack

 
window.onload=function{} 

After the page is loaded (including dom and js), the contents of the function are executed.
 
$(function(){}) 

After the page (dom) is loaded, the contents of the function are executed

Related articles: