【单选题】
页面中有一个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;
【多选题】
下列选项中,( )可以打开一个无状态栏的页面。
①
window.open(advert.html);
②
window.open(advert.html,广告,toolbar=1,scrollbars=0,status=1);
③
window.open(advert.html,,scrollbars=1,location=0,resizable=1);
④
window.open(advert.html,,toolbars=0, scrollbars=1, location=1, status=no);
【多选题】
某页面中有如下代码,下列选项中( )能把“令狐冲”修改为“任盈盈”。
张三丰
90
令狐冲
88
①
document.getElementById(Table1).rows[2].cells[1].innerHTML=任盈盈;
②
document.getElementById(Table1).rows[1].cells[0].innerHTML=任盈盈;
③
document.getElementById(row2).cells[0].innerHTML=任盈盈;
④
document.getElementById(row2).cells[1].innerHTML=任盈盈;