我有一段 JS 代码需要确定DOM 是否已加载。我知道当 DOM 加载时有几种执行 JS 代码的方法:
$(document).ready(function() { ... }); // Jquery version
document.body.onload = function() { ... } // Vanila JS way
我正在寻找一些看起来像的方法
function isDOMLoaded() {
// Do something to check if DOM is loaded or not
// return true/false depending upon logic
}
PS:更新(接受回答后) 我碰巧看到 jquery 也使用相同的方法来检查 DOM 是否已加载。看看jquery.ready() 这里的实现
bindReady: function() {
if ( readyBound ) {
return;
}
readyBound = true;
// Catch cases where $(document).ready() is called after the
// browser event has already occurred.
if ( document.readyState === "complete" ) {
return jQuery.ready();
}
...