最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jquery - How to detect if DOM has finished build? - Stack Overflow

programmeradmin1浏览0评论

What jQuery/JavaScript mand can I use to detect whether the DOM (driven by a custom function) has been built before populating the fields inside it? Currently the latter fails unless I put in an alert box in between the 2 actions.

What jQuery/JavaScript mand can I use to detect whether the DOM (driven by a custom function) has been built before populating the fields inside it? Currently the latter fails unless I put in an alert box in between the 2 actions.

Share Improve this question asked May 19, 2011 at 1:04 ErnestErnest 8244 gold badges12 silver badges25 bronze badges 1
  • http://www.whatwg/specs/web-apps/current-work/multipage/dom.html#current-document-readiness – RobG Commented May 19, 2011 at 2:26
Add a ment  | 

2 Answers 2

Reset to default 6

$(function() { }) will tell you when the DOM is ready to be accessed.

If your custom function is adding things to the DOM, the best way would be to build something into it that notifies some code when it is done.

You can look at document.readyState. If the page is ready it should be "plete".

You can also use document.addEventListener('DOMContentLoaded', function () { })

发布评论

评论列表(0)

  1. 暂无评论