jQuery日本語リファレンス

jQuery does not mean Japanese Query...

Attributes/API/jQuery

attr(key,value)

キーと値を渡して、全ての要素に属性を設定する。
引数
key
String
属性の名前
value
Object
属性の値
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
最初のボタンより後を、利用不可にする。
<button>0th Button</button>
<button>1st Button</button>
<button>2nd Button</button>
$("button:gt(0)").attr("disabled","disabled");
gt()を用いて最初の要素より後を指定している。
[全コードを表示] [実行結果を単体で表示]