A. str.test(ptrn) B. ptrn. search(str) C. str.search(ptrn) D. ptrn.test(str)
A. 所有标记对象都可以使用属性id B. 所有标记对象都可以使用属性name C. 有部分标记对象不能使用属性name D. 属性id是标记对象的标准属性
A. document.getElementById("") B. document.getElementById("*") C. document.getElementsName("*") D. document.getElementsTagName("*")
A. 可以对表单文本区使用firstChild.nodeValue获取文本区的值 B. 对非空文本标记一般为文本内容 C. 是当前标记内的第一个子标记节点 D. 可以取代innerHTML属性获取文本标记的文本内容
A. 整个文档是一个文档节点对象document B. document对象不具有父节点 C. HTML中的标记<span>不能被看做是元素节点对象 D. 元素节点对象<p>包含属性节点对象和文本节点对象
A. 2 B. 4 C. 6 D. 8
A. /^[A-Za-z]\w{6,18}/ B. /^[A-Za-z]\w{6,}/ C. /[^A-Za-z]\w{6,18}/ D. /[A-Za-z]\w{6,18}/
A. document.p1 B. document.getElementById(p1) C. document.getElementById("p1") D. document.getElementByName(p1)
A. 使用if(window.(*)),条件成立则是IE浏览器 B. 使用if(document.layers),条件成立则不是IE浏览器 C. 使用if(window.all),条件成立则是IE浏览器 D. 使用if(document.all),条件成立则是IE浏览器
A. document.form1.country.options.length=0; B. document.form1.country.options.size=0; C. document.form1.country.options.value=" "; D. document.form1.country.value=" ";