Skip to content

Instantly share code, notes, and snippets.

@hdknr
Last active October 14, 2024 02:32
Show Gist options
  • Save hdknr/b9da430dc87e11d78397a4edff1f7aa3 to your computer and use it in GitHub Desktop.
Save hdknr/b9da430dc87e11d78397a4edff1f7aa3 to your computer and use it in GitHub Desktop.
javascript: ページのURLを取得

Javascript ページ内のアンカーの取得

ブラウザの「検証」でコンソールからプログラムを実行

// ページ内のすべてのアンカー要素を取得
const anchors = document.querySelectorAll('a');
// アンカーのhref属性を配列に格納
const urls = Array.from(anchors).map(anchor => anchor.href);
// 結果をコンソールに表示
console.log(urls);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment