【多选题】
某页面中有一个id为pdate的文本框,下列( )能把文本框中的值改为“2009-10-12”。(选择二项)
①
document.getElementById(pdate).setAttribute(value,2009-10-12
②
document.getElementById(pdate).value=2009-10-12
③
document.getElementById(pdate).getAttribute(2009-10-12
④
document.getElementById(pdate).text=2009-10-12
【多选题】
在javaScript中,有如下代码,选项中都能够得到“李四”的是()。 body table border=0 cellspacing=0 cellpadding=0 id=employee thead tr id=row1 姓名/th 年龄/th 工资/th /tr /thead tbody tr id=row2 张三/td 30/td 5000/td /tr (tr id=row3 李四/td 25/td 4500/td /tr (/tbody /table /body(选择二项)
①
var tb=document.getElementById(employee var strHtml=tb.lastChild.lastChild.firstChild.value;
②
var tb=document.getElementById(employee var strHtml=tb.lastChild.lastChild.firstChild.innerHTML;
③
var r=document.getElementById(row3 var strHtml=r.firstChild.HTML;
④
var r=document.getElementById(row3 var strHtml=r.firstChild.value;
【单选题】
页面中有一个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(pricedocument.defaultView.getComputedStyle(divObj,null).background;
【单选题】
在HTML页面中,不能与onChange事件处理程序相关联的表单元素有( )。(选择一项)
【单选题】
关于onscroll事件的描述中,以下说法正确的是(选择一项)
【单选题】
String对象的方法不包括()(选择一项)
【单选题】
要在网页的状态栏中显示“已经选中该文本框”,下列JavaScript语句正确的是是( )。 (选择一项)
②
document.status=已经选中该文本框
④
document.screen=已经选中该文本框
【判断题】
DOM由三部分组成,分别是Core DOM、XML DOM和HTML DOM。
【判断题】
JavaScript的文档对象模型是树型结构的。
【判断题】
在HTML DOM中,TableCell对象的cellIndex属性可以返回返回单元格内部数据的水平排列方式。