获取索引的XML节点

时间:2019-04-25 13:17:18

标签: javascript xml typescript xslt

我有一个带有以下xml的textarea

<root>
  <header>
    <title>This is the doc title</title>
  </header>
  <body attribute="[cursor]">
    Here we have some <?cursor [cursor]?> Text or [cursor]
    <![CDATA[
      Even more text in a CDATA and <notExisting>
        <p>
          [cursor]
        </p>
      </notExisting>
    ]]>
    <cursor  [cursor] />
    or with a comment <!-- This is the [cursor] position -->
  </body>
</root>

因为这是一个文本区域,所以我可以将光标放置在我想要的任何地方。现在我要到光标位置的当前树。

例如,在第一个属性中,它可能类似于:/root/body/@attribute

或在处理指令中 /root/body/processing-instruction('cursor')

有什么办法可以始终获取当前光标位置吗?

0 个答案:

没有答案