Attributes/API/jQuery
removeAttr(name)
指定属性を持つ要素から、属性を削除する。
- name
- String削除する属性の名前
引数
戻り値
jQuery
jQueryオブジェクト
サンプル
サンプル1
ボタンが押されると、隣の要素が持つdisabled属性を削除する。
<button>Enable</button> <input type="text" disabled="disabled" value="can't edit this" />
$(this).next().removeAttr("disabled") .focus() .val("editable now");
[全コードを表示]
[実行結果を単体で表示]