以下为句子列表:
英文: The NodeList keeps itself up-to-date. If an element is deleted or added, in the node list or the XML document, the list is automatically updated.
中文: 节点列表可保持其自身的更新。如果节点列表或XML文档中的某个元素被删除或添加,列表也会被自动更新。
更详细...
英文: The getElementsByTagNameNS() method returns a NodeList of all elements with a specified name and namespace.
中文: 方法的作用是:通过指定的名称和命名空间返回所有元素的节点列表。
更详细...
英文: The getElementsByTagname() method returns a nodelist that contains all elements with the specified tag name in the same order as they appear in the source document.
中文: 方法将返回一份包含所有指定标签名称元素的节点列表,所有元素的排列顺序与它们在源文件中的排列顺序一样。
更详细...
英文: The nodes in the NodeList can be accessed through their index number (starting from 0).
中文: 节点列表中的节点可以同过其对应的索引数字进行访问(从0开始计数)。
更详细...
|