我有一个网页,我想通过代码修改(在特定单词上添加链接)。
HTML 代码:
<div class="section">
<h2>Notre histoire</h2>
<p style="text-align: justify;">SPECIFICS WORDS<strong>1998 : la création</strong></p>
<p style="text-align: justify;">pour objectif « de promouvoir, selon une démarche d’éducation active, auprès des jeunes et à travers eux, des projets d’expression collective et d’action de solidarité » (article 2).<br><br><strong>1999-2001 : les débuts SPECIFICS WORDS</strong></p>
<p style="text-align: justify;">SPECIFICS WORDS<a href="#">SPECIFICS WORDS</a></p>
</div>
所以我的目标是 preg_replace 特定单词,但仅限于那些在 P 中,但从 A 或 STRONG 或任何一个标签中出来的人。
我不能使用任何类或任何 id,因为我以前不知道代码!我尝试了 preg_replace PHP 函数,但它不起作用,并且执行时间太长。
所以我的问题是:如何使用 XPATH 选择没有 A、STRONG、IMG 子节点的节点?