A.内存受限时
B.只有特定的元素需要处理
C.文档很大
D.文档必须非顺序地处理
第1题:
DOM is a platform. and language -(66)API that allows programs and scripts to dynamically access and update the content, structure and style. of WWW documents(currently, definitions for HTML and XML documents are part of the specification). The document can be further processed and the results of that processing can be incorporated back into the presented(67)DOM is a(68)-based API to documents, which requires the whole document to be represented in(69)while processing it. A simpler alternative to DOM is the event - based SAX, which can be used to process very large(70)documents that do not fit into the memory available for processing.
A.specific
B.neutral
C.contained
D.related
第2题:
第3题:
关于XML接口DOM,下列描述错误的是()。
第4题:
简述列举文档对象模型DOM里document的常用的查找访问节点的方法并做简单说明。
第5题:
DOM是Document Object Model的英文缩写,翻译过来的意思是()。
第6题:
DOM(Document Object Model)定义了文档的()和访问、操纵文档的方法。它为XML、HTML提供了应用程序接口API。
第7题:
js操作DOM对象可以获取整个页面body的是()。
第8题:
以下关于DOM对象说法正确的是()。
第9题:
< divclass="box">< /div>以下操作可以获取到该标签的dom对象的是()。
第10题:
是文档对象模型
是Document object model的缩写
是浏览器对象模型
是Bowers object model的缩写
第11题:
内存受限时
只有特定的元素需要处理
文档很大
文档必须非顺序地处理
第12题:
vardiv=document.getElementsByTagName(div)[0]
vardiv=document.getElementsByTagName(div)
vardiv=document.getElementsByClassName(box)[0]
vardiv=document.getElementsByClassName(box)
第13题:
第14题:
第15题:
以下关于DOM说法不正确的是()。
第16题:
DOM对象中字母M代表Model。
第17题:
DOM接口中的Document节点有哪两个子节点?分别代表什么意义?
第18题:
DOM方式操作SML涉及的基本类有:Document,Node,Nodelist,Element和()
第19题:
有如下标签,通过class获取dom对象正确的是()。
第20题:
用JavaScript获取dom对象,以下哪些获取的是数组()。
第21题:
DOM(Document Object Model)最适合应用在()。
第22题:
DOM的全称是“Document Object Model”,即文档对象模型
在应用程序中,基于DOM的XML分析器将一个XML文档转换成一个对象模型的集合(通常称DOM树)
通过DOM接口,应用程序可以在任意时刻访问XML文档中的任何一部分数据,因此,这种利用DOM接口的机制也被称作随机访问机制
DOM强制使用树模型访问XML文档中的信息,不适合XML的模式
第23题:
对
错