当前位置: 首页 > 网络学院 > XML相关教程 > XML DOM > compareDocumentPosition() 方法
The compareDocumentPosition() method compares the document position of the current node, with a specified node, according to the document order.
compareDocumentPosition()方法的作用是:按照节点所在文档中的顺序比较当前节点和指定节点的位置。
elementNode.compareDocumentPostition(node) |
Parameter 参数 | Description 描述 |
---|---|
node | Required. Specifies the node to compare with the current node 必要参数。指定需要和当前节点进行比较的节点对象 |
In all examples, we will use the XML file books.xml, and the JavaScript function loadXMLDoc().
在所有案例中,我们将使用“books.xml”文件以及JavaScript 函数“loadXMLDoc()”。
The following code fragment compares the first and the third <book> nodes in "books.xml":
下面的代码片断将比较“books.xml”文件中第一个节点和第三个<book>节点:
xmlDoc=loadXMLDoc("books.xml"); var x=xmlDoc.getElementsByTagName('book')[0]; var y=xmlDoc.getElementsByTagName('book')[2]; document.write(x.compareDocumentPosition(y)); |
Output:
输出结果:
4 |
Internet Explorer will skip the white-space text nodes that are generated between nodes (e.g. new line characters), while Mozilla will not. So, in the example above, Mozilla browsers will output 4, while Internet Explorer will output 2.
IE将跳过在节点之间产生的空格文档节点(如:换行字符),而Mozilla不会这样。在下面的案例中,Mozilla浏览器将输出4,而IE将输出2。
To read more about the differences between IE and Mozilla browers, visit our Mozilla vs. IE chapter in our XML DOM Tutorial.
如果你想获取更多关于IE和Mozilla浏览器中的不同,那你可以访问XML DOM教程中的“Mozilla vs. IE ”这章。
compareDocumentPosition() - Compare the document position of two nodes
compareDocumentPosition() - 比较两个节点所在文档的位置