Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.7k views
in Technique[技术] by (71.8m points)

如何获取HTML中所有文本节点?

比如以下body中

<body>
  <div class="container">
    asdf
    <div>
      Lorem ipsum dolor sit
      <p>!!!!</p>
      nesciunt ipsa cumque!
    </div>
    <p>test3</p>
  </div>
</body>

想获取一个数组

['asdf', 'Lorem ipsum dolor sit', '!!!!', 'nesciunt ipsa cumque!', 'test3']

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
const res = document.querySelector('*').innerText.split('
');
console.log(res);

res就是得到的结果了


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...