我想获取该网页的 p 标签,但我不想要 <br> 及之后的内容。只想要红框的部分,请问我可以怎么做?
图没贴出来?
感谢,已补上
用 firstChild.nodeValue。
firstChild.nodeValue
以上图为例:
document.querySelector(".message > p:nth-child(1)").firstChild.nodeValue;