A question about the DOMContentLoaded event

if there is a piece of js code that binds the DOMContentLoaded event at the end, and this code refers to a large external js file (it takes a long time to introduce and complete, the page DOM has already been rendered), will the later bound DOMContentLoaded still be triggered?

Mar.15,2021

binds a callback function that is placed in the event queue when other code is executed and continues to load the code to be executed from the event queue, so it will

Menu