鉴于以下内容:
<div class="content">
<div id="brian">
<p>Hello my name is Alex</p>
<p>My surname is Thomas</p>
<p>My middle name is James</p>
<p>true story...</p>
</div>
</div>
在我的主题中有以下内容:
<div id="dave" />
我如何#dave
用第一段替换?我试过了:
<replace content="//div[@class='content']/p" theme="div#dave" />
<replace content="//div[@class='content']/p[1]" theme="div#dave" />
<replace content="children://div[@class='content']/p" theme="meta#description" />
两者都不起作用...请注意,.content
它被埋得相当深并且可以改变位置,因此不能选择使用它的 XPath。通过xPath,我的意思是/div/div/p[1]
等等......