📌  相关文章
📜  javascript - 页面完全加载时如何执行功能? - Javascript代码示例

📅  最后修改于: 2022-03-11 15:04:10.448000             🧑  作者: Mango

代码示例1
That's called load. It came waaaaay before DOM ready was around, and DOM ready was actually created for the exact reason that load waited on images.

window.addEventListener('load', function () {   alert("It's loaded!") })