|
[B]async 属性[/B]
[B]作 用[/B] async 属性表示是否允许异步的下载。
[B]基本语法[/B] boolValue = XMLDocument.async;XMLDocument.async = boolValue;
[B]说 明[/B] 布尔值是可擦写的(read/write),如果准许异步下载,值为True;反之则为False。
[B]范 例[/B]
xmlDoc.async = "false";
alert(xmlDoc.async);
=================================================
[B]attribute 属性 [/B]
[B]作 用[/B] 传回目前节点的属性列表。
[B]基本语法[/B] objAttributeList = xmlNode.attributes;
[B]说 明[/B] 传回一个物件。如果此节点不能包含属性,则传回空值。
[B]范 例[/B]
objAttList = xmlDoc.documentElement.attributes;
alert(objAttList);
=================================================
[B]childNodes 属性[/B]
[B]作 用[/B] 传回一个节点清单,包含该节点所有可用的子节点。
[B]基本语法[/B] objNodeList=node.childNodes;
[B]说 明[/B] 传回一个物件。假如这节点没有子节点,传回null。
[B]范 例[/B]
objNodeList = xmlDoc.childNodes;
alert(objNodeList);
=================================================
[B]doctype 属性[/B]
[B]作 用[/B] 传回文件型态节点,包含目前文件的DTD。这节点是一般的文件型态宣告,例如,节点,名为EMAIL 的节点物件会被传回。
[B]基本语法[/B] objDocType=xmlDocument.doctype;
[B]说 明[/B] 传回一个对象,这个属性是只读的。假如这文件不包含DTD,会传回null。
[B]范 例[/B]
objDocType = xmlDoc.doctype;
alert(objDocType.nodeName);
=================================================
[B]documentElement 属性[/B]
[B]作 用[/B] 确认XML 文件的根(Root)节点。
[B]基本语法[/B] objDoc=xmlDocument.documentElement;
[B]说 明[/B] 回一个在单一根文件元素中包含数据的对象。此属性可读/写,如果文件中不包含根节点,将传回null。
[B]范 例[/B]
objDocRoot = xmlDoc.documentElement;
alert(objDocRoot);
=================================================
[B]firstChild 属性[/B]
[B]作 用[/B] 确认在目前节点中的第一个子元素。
[B]基本语法[/B] objFirstChild = xmlDocNode.firstChild ;
[B]说 明[/B] 此属性只读且会传回一对象,如果节点中没有包含第一个子元素,将传回null。
[B]范 例[/B]
objFirstChild = xmlDoc.documentElement.firstChild;
alert(objFirstChild);
=================================================
[B]implementation 属性[/B]
[B]作 用[/B] DOM 应用程序能使用其它实作中的对象。implementation 属性确认目前XML 文件的DOMimplementation 对象。
[B]基本语法[/B] objImplementation = xmlDocument.implementation;
[B]说 明[/B] 此属性只读且传回一个对象。
[B]范 例[/B]
objImp = xmlDoc.implementation;
alert(objImp);
=================================================
[B]lastChild 属性[/B]
[B]作 用[/B] 确认目前节点中最后的子元素。
[B]基本语法[/B] objLastChild = xmlDocNode.lastChild;
[B]说 明[/B] 此属性只读且传回一个对象。如果节点中没有包含最后子元素,将传回null。
[B]范 例[/B]
objLastChild = xmlDoc.documentElement.lastChild;
alert(objLastChild);
=================================================
[B]nextSibling 属性[/B]
[B]作 用[/B] 在目前文件节点的子节点列表中传回下一个兄弟节点。
[B]基本语法[/B] objNextSibling = xmlDocNode.nextSibling;
[B]说 明[/B] 此属性是只读且传回一个对象。如果节点中没有包含其它的相关节点,会传回null。
[B]范 例[/B]
objSibling = xmlDoc.documentElement.childNodes.item(1) .nextSibling;
alert(objSibling);
=================================================
[B]nodeName 属性[/B]
[B]作 用[/B] 传回代表目前节点名称的字符串。
[B]基本语法[/B] strNodeName = xmlDocNode.nodeName ;
[B]说 明[/B] 传回一个字符串。这个属性是只读的,传回元素名称、属性或实体参照。
[B]范 例[/B]
strNodeName = xmlDoc.documentElement.nodeName;
alert(strNodeName);
=================================================
[B]nodeType 属性 [/B]
[B]作 用[/B] 辨识节点的DOM 型态。
[B]基本语法[/B] numNodeType = xmlDocNode.nodeType ;
[B]说 明[/B] 此属性只读且传回一个数值。
有效的数值符合以下的型别:
1-ELEMENT
2-ATTRIBUTE
3-TEXT
4-CDATA
5-ENTITY REFERENCE
6-ENTITY
7-PI (processing instruction)
8-COMMENT
9-DOCUMENT
10-DOCUMENT TYPE
11-DOCUMENT FRAGMENT
12-NOTATION
[B]范 例[/B]
numNodeType = xmlDoc.documentElement.nodeType;
alert(numNodeType);
=================================================
[B]nodeValue 属性[/B]
[B]作 用[/B] 传回指定节点相关的文字。这并非一个元素中数据的值,而是与一个节点相关且未解析的文字,就像一个属性或者一个处理指令。
[B]基本语法[/B] varNodeValue = xmlDocNode.nodeValue;
[B]说 明[/B] 传回的文字代表以节点的nodeType 属性为主的型态值。(请参考附录中的nodeType 属性。)因为节点型态可能是几种数据型态中的一种,传回值也因此有差异。传回null 的节点型态有:DOCUMENT、ELEMENT、DOCUMENT TYPE、DOCUMENT FRAGMENT、ENTITY、ENTITY REFERENCE,和NOTATION。此属性可擦写。
[B]范 例[/B]
varNodeValue = xmlDoc.documentElement.nodeValue;
alert(varNodeValue);
=================================================
[B]ondataavailable 属性[/B]
[B]作 用[/B] 指定一个事件来处理ondataavailable 事件。
[B]基本语法[/B] xmlDocNode.ondataavailable = value;
[B]说 明[/B] 此属性是唯写,允许文件作者一旦数据为可用,即可尽快的使用数据来运作。
[B]范 例[/B]
xmlDoc.ondataavailable = alert("Data is now available.");
=================================================
[B]onreadystatechange 属性[/B]
[B]作 用[/B] 指定一个事件来处理onreadystatechange 事件。这个事件能辨识readyState 属性的改变。
[B]基本语法[/B] xmlDocNode.onreadystatechange = value;
[B]说 明[/B] 此属性是唯写的,允许文件作者指定当readyState 属性改变时呼叫事件。
[B]范 例[/B]
xmlDoc.onreadystatechange = alert("The readyState property has changed.");
=================================================
[B]ownerDocument 属性 [/B]
[B]作 用[/B] 传回文件的根节点,包含目前节点。
[B]基本语法[/B] objOwnerDoc = xmlDocument.ownerDocument;
[B]说 明[/B] 此属性是只读的,传回一个包含文件根节点的对象,包含特定的节点。
[B]范 例[/B]
objOwnerDoc = xmlDoc.childNodes.item(2).ownerDocument;
alert(objOwnerDoc);
=================================================
[B]parentNode 属性 [/B]
[B]作 用[/B] 传回目前节点的父节点。只能应用在有父节点的节点中。
[B]基本语法[/B] objParentNode = xmlDocumentNode.parentNode;
[B]说 明[/B] 此属性是只读的,传回包含指定节点的父节点对象。如果此节点不存在于文件树中,将传回null。
[B]范 例[/B]
objParentNode = xmlDoc.childNodes.item(1).parentNode;
alert(objParentNode);
=================================================
[B]parseError 属性 [/B]
[B]作 用[/B] 传回一个DOM 解析错误对象,此对象描述最后解析错误的讯息。
[B]基本语法[/B] objParseErr = xmlDocument.parseError;
[B]说 明[/B] 此属性是只读的。如果没有错误发生,将传回0。
[B]范 例[/B]
objParseErr = xmlDoc.parseError;
alert(objParseErr);
=================================================
[B]previousSibling 属性 [/B]
[B]作 用[/B] 传回目前节点之前的兄弟节点。
[B]基本语法[/B] objPrevSibling = xmlDocument.previousSibling;
[B]说 明[/B] 传回一个对象,这个属性是只读的。若该节点没有包含前面的兄弟节点,会传回null。
[B]范 例[/B]
objPrevSibling = xmlDoc.documentElement.childNodes.item(3).previousSibling;
alert(objPrevSibling);
=================================================
[B]readyState 属性[/B]
[B]作 用[/B] 传回XML 文件资料的目前状况。
[B]基本语法[/B] intState = xmlDocument.readyState;
[B]说 明[/B] 这个属性是只读的,传回值有以下的可能:
0-UNINITIALIZED:XML 对象被产生,但没有任何文件被加载。
1-LOADING:加载程序进行中,但文件尚未开始解析。
2-LOADED:部分的文件已经加载且进行解析,但对象模型尚未生效。
3-INTERACTIVE:仅对已加载的部分文件有效,在此情况下,对象模型是有效但只读的。
4-COMPLETED:文件已完全加载,代表加载成功。
[B]范 例[/B]
alert("The readyState property is " + xmlDoc.readyState);
=================================================
[B]url 属性[/B]
[B]作 用[/B] 传回最近一次加载XML 文件的URL。
[B]基本语法[/B] strDocUrl = xmlDocument.url;
[B]说 明[/B] 这个属性是只读的,传回最近一次加载成功文件的URL,若文件仅存在主存储器中(表示该文件并非由外部档案加载),则传回null。
[B]范 例[/B]
alert(xmlDoc.url);
=================================================
[B]validateOnParse 属性[/B]
[B]作 用[/B] 告诉解析器文件是否有效。
[B]基本语法[/B] boolValidate = xmlDocument.validateOnParse; xmlDocument.validateOnParse = boolValidate;
[B]说 明[/B] 此属性是可擦写的。如果传回值为true,表示文件被解析时被确认是有效的。如果传回false,表示文件是无效的,并被认为只是标准格式的(well-formed)文件。
[B]范 例[/B]
xmlDoc.validateOnParse = true;
alert(xmlDoc.validateOnParse);
=================================================
[B]xml 属性 [/B]
[B]作 用[/B] 传回指定节点的XML 描述和所有的子节点。
[B]基本语法[/B] xmlValue = xmlDocumentNode.xml;
[B]说 明[/B] 此属性是只读的。
[B]范 例[/B]
xmlValue = xmlDoc.documentElement.xml;
alert(xmlValue);
Methods and properties of Microsoft.XMLDOM
Methods and properties of Microsoft.XMLDOM |
Document
Properties
async
boolean: specifies whether asynchronous download of the document is permitted.
doctype
documentElement
implementation
ondataavailable [ie]
onreadystateChange [ie]
ontransformnode [ie]
parseError [ie]
preserveWhiteSpace [ie]
readyState
resolveExternals [ie]
setProperty ) [ie]
The following (2nd level) properties can be set:
AllowDocumentFunction
ForcedResync
MaxXMLSize
NewParser
SelectionLanguage
SelectionNamespace
ServerHTTPRequest
for example:
xmlDoc.setProperty("SelectionLanguage", "XPath");
selection = xmlDoc.selectNodes("//Customer");
url [ie]
validateOnParse [ie]
Methods
abort [ie]
createAttribute
createCDATASection (data )
createComment (comment)
createDocumentFragment (data )
createElement (tagName)
createEntityReference (name )
createNode [ie] (type, name, nameSpaceURI)
createProcessingInstruction (target, data)
createTextNode (data)
getElementsByTagName (tagName)
load [ie] (url)
loadXML [ie] (xml_string)
nodeFromID [ie] (id_string)
save [ie] (objTarget)
Node
Properties
attributes
returns an array of objects. An object in this array has the name and value property.
baseName [ie]
childNodes
dataType [ie]
definition [ie]
firstChild
lastChild
namespaceURI [ie]
nodeName
nodeType
Can be
1: Element
2: Attribute
3: Text
4: CDATA Section
5: Entity Reference
6: Entity
7: Processing Instruction
8: Comment
9: Document
10: Document Type
11: Document Fragment
12: Notation
nodeTypedValue [ie]
nodeTypeString [ie]
nodeValue
This property defines the content of a div. The following example uses nodeValue to write the seconds since the page was loaded:
0
ownerDocument
parentNode
parsed [ie]
prefix
previousSibling [ie]
specified [ie]
text [ie]
xml [ie]
Methods
appendChild (tagName)
cloneNode (deep )
If deep is true, the children and children's children are cloned as well.
hasChildNodes ()
insertBefore (newChild, refChild)
removeChild (child)
replaceChild (newChild, oldChild)
selectNodes [ie] (patternString)
Returns a list of nodes.
For example:
xmlDoc.setProperty("SelectionNamespaces", "xmlns:xsl='http://www.w3.org/1999/XSL/Transform'");
xmlDoc.setProperty("SelectionLanguage", "XPath");
objNodeList = xmlDoc.documentElement.selectNodes("//xsl:template");
selectSingleNode [ie] (patternString)
transformNode [ie] (stylesheet)
transformNodeToObject [ie] (stylesheet, outputObject)
Thanks
Thanks to Enrique A. Gamez who notified me of a type on this page.
|
[I] [I] [I][Ctrl+A 全选 注:如需引入外部Js需刷新才能执行] |
|