两问:如何排除一个<p>中的<span>标签

动作开发 · 722 次浏览
Poto 创建于 2021-08-30 04:32

我想获取该网页的 p 标签,但我不想要 <br> 及之后的内容。只想要红框的部分,请问我可以怎么做?

Poto 最后更新于 2021/8/30

回复内容
wordpure 2021-08-30 11:58
#1

图没贴出来?

Poto 2021-08-30 12:13 :

感谢,已补上

wordpure 2021-08-30 12:25
#2

firstChild.nodeValue

以上图为例:

document.querySelector(".message > p:nth-child(1)").firstChild.nodeValue;
回复主贴