下列叙述不正确的是_______________。
A. document:最顶层的节点,所有的其他节点都是附属于它的
B. documentTypeDTD:引用(使用语法)的对象表现形式
C. Attr:代表一对特性名和特性值。这个节点类型能包含子节点
D. documentFragment:可以像document一样来保存其他节点
查看答案
在HTML页面中,CSS样式的属性名为background-color对应的style对象的属性名是_______________。
A. bgColor
B. backgroundColor
C. backColor
D. background
下列可以控制某个元素a的文本颜色的是_______________。
A. document.all.a.style.color
B. document.all.a.style.backgroundColor
C. document.a.color
D. document.a.backgroundColor
假设已经存在正则表达式ptrn,验证字符串str是否符合正则表达式的要求,以下代码正确的是_______________。
A. str.test(ptrn)
B. ptrn. search(str)
C. str.search(ptrn)
D. ptrn.test(str)