attr()はHTML要素の属性を取得、設定することができるメソッドです。
以下のようなコードがあるとしましょう。
<a href="https://example.com" id="example-link">Go to Example</a>
- 属性の取得
var hrefValue = $('#example-link').attr('href');
console.log(hrefValue); // コンソールに 'https://example.com' と表示されます
idがexample-link
である要素のhref
属性を取得できます。
- 属性の設定
hrefValue = $('#example-link').attr('href', 'https://newexample.com');
console.log(hrefValue); // コンソールに 'https://newexample.com' と表示されます
attrメソッドの第2引数の値を設定します。