[removed] seems to trigger before the DOM is loaded (JavaScript)

后端 未结 5 1484
我在风中等你
我在风中等你 2020-11-28 13:45

I am having trouble with the window.onload and document.onload events. Everything I read tells me these will not trigger until the DOM is fully loa

5条回答
  •  甜味超标
    2020-11-28 14:17

    Have you tried using a javascript library instead, e.g. jQuery and it's $(document).ready() function:

      $(document).ready(function() {
          // put all your jQuery goodness in here.
      });
    

提交回复
热议问题