jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Attributes/API/jQuery

attr(name)

最初の要素が持つ指定属性の値を返す。
要素が指定属性を持っていない場合、関数はundefinedを返す。
引数
name
String
属性の名前
戻り値
jQuery
指定された属性の値
サンプル
サンプル1
最初のem要素が持つtitle属性の値を表示する。
<p>
  Once there was a <em title="huge, gigantic">large</em> dinosaur...
</p>
var title = $("em").attr("title");
alert(title);
コードは、”huge, gigantic”を表示する。
[全コードを表示] [実行結果を単体で表示]