【单选题】
页面中有一个id为price的层,并且有一个id选择器price用来设置层price的样式,在IE浏览器中运行此页面,下面( )能正确获取层的背景颜色。
①
document.getElementById(price).currentStyle.backgroundColor
②
document.getElementById(price).currentStyle.background-color
③
document.getElementById(price).style.backgroundColor
④
var divObj=document.getElementById(price);document.defaultView.getComputedStyle(divObj,null).background;
【单选题】
下列CSS规则中能够使超链接在盘旋时下边框为2px、实线、红色效果的选项是( )。
①
a:hover{border-bottom:2px solid #FFOOOO;text-decoration:none;}
②
a:hover{border-top:2px solid #FFOOOO;text-decoration:none;}
③
a:hover{border-bottom:2px dashed #FFOOOO;text-decoration:none;}
④
a:hover{border-right:2px double #FFOOOO;text-decoration:none;}