Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试创建将在加载和应用文档的每个部分后调用的函数。
那么:所有的css都应用了document.load吗?document.load如果某些资源会出现 404 错误,是否会调用?
document.load
load 事件将在整个初始文档(包括依赖项)(如 HTML(和 CSS)源描述的那样)加载后触发。
使用 JavaScript 添加到 DOM 的内容可能要等到 load 事件触发后才能完成加载。