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.
有谁知道函数 window.document.all 是在哪里定义的?尝试搜索但没有任何结果。
非常感谢
编辑:注意我知道应该使用因此弃用和 documentgetelementbyid 。仍然需要知道这个函数运行时执行了什么。
它与谷歌 V8 无关。它是文档对象的遗留属性。它存储文档中所有元素的数组,按 ID 索引。
你应该document.getElementById()改用。
document.getElementById()
如果您要问这个问题,那么源代码可能一开始就对您没有用处。但是给你:
https://github.com/WebKit/webkit/blob/5b7f307f78ff665c0102bd008d2a47b9b2f8e5b5/Source/WebCore/dom/Document.cpp#L4405