通过document.getElementById('header').style.background-color可以获取ID为header的元素的背景颜色
举一反三
- 在JS中,通过document对象下的getElementById()方式用ID获取元素。()
- 下面哪个选项将用于创建一个名为header的ID,它的宽度为750像素,高度为30像素,文本的颜色为黑色? A: #header{height:30px;width:750px;color:black;} B: .header{height:30px;width:750px;colour:black;} C: #header{height:30px;width:750px;text:black;} D: .header{height:30px;width:750px;color:black;}
- document.getElementById ( ‘a’) 是通过 id 值为 a 获取页面中的一个元素。( )
- 以下哪些选项可以获取ID为a的DOM元素?() A: document.getElementById(’a’) B: document.getElementById(’#a’) C: document.querySelector(’a’) D: document.querySelector(’.a’)
- 页面中一个id为price的层,使用id选择器设置层price的样式,在IE浏览器中运行此页面,下列代码中,()能正确获取层的背景颜色。 A: document.getElementById("price").currentStyle.backgroundColor B: document.getElementById("price").currentStyle.background-color C: document.getElementById("price").style.backgroundColor D: var divObj=document.getElementById("price");document.defaultView.getComputedStyle(divObj,null).background;