This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
<p><span>一个范围具有两个边界点,即一个开始点和一个结束点。每个边界点由一个节点和那个节点的偏移量指定。该节点通常是 </span><ahref="http://www.w3school.com.cn/xmldom/dom_element.asp"title="XML DOM - Element 对象">Element 节点</a><span>、</span><ahref="http://www.w3school.com.cn/xmldom/dom_document.asp"title="XML DOM - Document 对象">Document 节点</a><span>或 </span><ahref="http://www.w3school.com.cn/xmldom/dom_text.asp"title="XML DOM - Text 对象">Text 节点</a><span>。对于 Element 节点和 Document 节点,偏移量指该节点的子节点。偏移量为 0,说明边界点位于该节点的第一个子节点之前。偏移量为 1,说明边界点位于该节点的第一个子节点之后,第二个子节点之前。但如果边界节点是 Text 节点,偏移量则指的是文本中两个字符之间的位置。</span></p>