本記事では、JavaScriptやjQueryで全ての属性を取得する方法について解説しています。
先輩くん
全ての属性を取得する方法は、JavaScriptとjQueryも変わらないよ!
JavaScriptの学習におすすめ書籍
1冊ですべて身につくJavaScript入門講座
メリット
- 誰でも分かるように嚙み砕いて説明してくれる
- アニメーションの知識が深く学べる
- 1つのWebサイトを作りながら学べる
Amazon Kindle Unlimitedに登録すると、月額980円で読み放題だからオススメだよ!
初回30日間は無料だから、まだ登録したことのない人はぜひ試してみてね!
全プログラマー必見!
変数名/関数名にもう悩まない!
変数名/関数名にもう悩まない!
リーダブルコード
メリット
- 美しいコードが書けるが自然と書けるようになる
- 他の開発者が理解しやすいコードになる
著:Dustin Boswell, 著:Trevor Foucher, 解説:須藤 功平, 翻訳:角 征典
¥2,640 (2023/07/23 02:48時点 | Amazon調べ)
目次
attributesプロパティ
全ての属性を取得するには、attributesプロパティを使用します。基本的な使い方は以下のとおりです。
let sampleElem = document.querySelector("selectors");
let attrs = sampleElem.attributes;
構文解説
- sampleElem:全ての属性を取得したい要素を代入
- attributes:取得した要素に対してattributesプロパティを指定
- attrs:NamedNodeMapが返される
実際に、attributesプロパティを使用して全ての属性を取得するサンプルコードを用意したので、動作確認してみましょう。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<img id="img" class="image-sample" src="hoge.png" alt="サンプル画像" />
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="index.js"></script>
</body>
</html>
let imgElem = document.querySelector("#img");
let imgAttrs = imgElem.attributes;
console.log(imgAttrs); // => NamedNodeMap {0: id, 1: class, 2: src, 3: alt, id: id, class: class, src: src, alt: alt, length: 4}
for (let imgAttr of imgAttrs) {
console.log(`属性:${imgAttr.name}`); // => 属性:id 属性:class 属性:src 属性:alt
console.log(`属性値:${imgAttr.value}`); // => 属性値:img 属性値:image-sample 属性値:hoge.png 属性値:サンプル画像
}
attributesプロパティで取得したNamedNodeMapをfor…of文でループさせています。attributesプロパティで返されたNamedNodeMapはnameプロパティで属性を、valueプロパティで属性値を取得することが出来ます。