LoginSignup
7
4

More than 3 years have passed since last update.

querySelectorAllをmapする

Last updated at Posted at 2019-11-21

スクレイピング時に手軽にリストを展開したいとき

querySelectorAllArrayではないのでforEachはありますがmapはありません
中のコンテンツを取り出したいときにforEach+pushだと煩わしさがあるのでmapでなんとかしたいと思うでしょう。

以下の方法でmapすることができます

サンプルコード

const data = [...document.querySelectorAll('.list li')].map((node) => {
  return node.textContent
})
7
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
4