Do something AFTER the page has loaded completely

前端 未结 8 731
日久生厌
日久生厌 2020-12-08 20:41

I\'m using some embed codes that insert HTML to the page dynamically and since I have to modify that dynamically inserted HTML, I want a jquery function to wait until the pa

8条回答
  •  醉酒成梦
    2020-12-08 21:27

    That is the purpose of jQuery's .ready() event:

    $(document).ready(function() {
        if ( $('#abc').length ) //If checking if the element exists, use .length
            alert("yes");
    });
    

    Description: Specify a function to execute when the DOM is fully loaded.

提交回复
热议问题