题目1: dom对象的innerText和innerHTML有什么区别?
innerText 是一个表示一个节点及其后代的“渲染”文本内容的属性。
innerHTML是一个设置或获取描述元素后代的HTML语法
题目2: elem.children和elem.childNodes的区别?
elem.childNodes它返回指定元素的子元素集合,包括HTML节点,所有属性,文本
elem.children 它返回指定元素的子元素集合。经测试,它只返回HTML节点,甚至不返回文本节点
题目3:查询元素有几种常见的方法?ES5的元素选择方法是什么?
常见方法有getElementById()、getElementsByClassName()、getElementsByTagName()、getElementsByName()。
分别通过ID、类名、标签名、name属性名来查询元素。
ES5的元素选择方法是querySelector(),通过css选择器查询元素。
题目4:如何创建一个元素?如何给元素设置属性?如何删除属性
document.createElement();
element.setAttribute();
element.removeAttribute();
题目5:如何给页面元素添加子元素?如何删除页面元素下的子元素?
element.appendchild()
element.removechild()
题目6: element.classList有哪些方法?如何判断一个元素的 class 列表中是包含某个 class?如何添加一个class?如何删除一个class?
add( String [, String] )
Add specified class values. If these classes already exist in attribute of the element, then they are ignored.
remove( String [, String] )
Remove specified class values.
Note: Removing a class that does not exist, does NOT throw an error.
item( Number )
Return class value by index in collection.
toggle( String [, force] )
When only one argument is present: Toggle class value; i.e., if class exists then remove it and return false, if not, then add it and return true.
When a second argument is present: If the second argument evaluates to true, add specified class value, and if it evaluates to false, remove it.
contains( String )
Checks if specified class value exists in class attribute of the element.
replace( oldClass, newClass )
Replaces an existing class with a new class.
判断的话用element.classList.contains() 添加用element.classList.add() 删除用element.classList.remove()
题目7: 如何选中如下代码所有的li元素? 如何选中btn元素?
<div class="mod-tabs">
<ul>
<li>list1</li>
<li>list2</li>
<li>list3</li>
</ul>
<button class="btn">点我</button>
</div>
document.querySlectorAll("li");
document.querySlector(".btn");