【单选题】
所谓横向综合结构是一种按照( )来组织系统结构的构成原则。
【单选题】
用户通过终端设备向系统提出服务请求,系统完成服务后通过终端即时回答用户,这样的信息处理系统属于( )。
【单选题】
下面()能够动态改变层中的提示内容。(选择一项)
【判断题】
制作网页上的浮动广告时,需要定义一个函数实现浮动广告层随滚动条滚动的效果,假如已经定义好了这个名为move的函数,那么最后需要做的是捕获窗口的window.onscroll事件,调用move函数。
【判断题】
onChange—当单击按钮、单选框或复选框时触发。
【多选题】
某页面中有一个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事件处理程序相关联的表单元素有( )。(选择一项)