單項選擇題獲取< divid="box">< /div>的id值正確的是()。

A.div.getAttribute("id")
B.div.get
C.div.Attribute("id")
D.div.attr("id")


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題js操作DOM對象可以獲取整個頁面body的是()。

A..body
B.document
C.document.body
D.document.html

2.單項選擇題js的以下操作中可以給div添加樣式的是()。

A.div.style.color="red"
B.div.style="red"
C.div.color="red"
D.div.style.color("red")

3.單項選擇題以下操作可以刪除DOM對象的是()。

A.remove()
B.del()
C.append()
D.move()

4.單項選擇題通過js給div標簽添加class="box"的屬性正確的是()。

A.div.setAttribute("id","box")
B.div.setAttribute("class","box")
C.div.getAttribute("class")
D.div.class

5.單項選擇題以下的操作中可以獲取整個頁面的HTML的代碼是()。

A.document.documentElement
B.document.getElementsByTagName("div")
C.document.body
D.document.getElementsByClassName("box")[0]