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.
我怀疑如果我不能使用getElementsByTagName(),getElementById()还有其他方法可以选择 HTML 元素getElementsByClassName()吗?
getElementsByTagName()
getElementById()
getElementsByClassName()
查询 DOM 的主要方式有 5 种:
getElementById getElementsByTagName getElementsByName getElementsByClassName (except IE<9) querySelector (except IE<8 and IE8 in compat mode)
他们都可以在任何其他元素内进行搜索。除了最后一个之外,所有这些都返回实时集合。