jQueryでHTMLタグに独自属性を追加するには、.attrを使用します。
構文
- (構文)
- //属性を設定する $(this).attr(<属性名>, <値>); //属性を取得する var a = $(this).attr(<属性名>);
サンプルソース
例)ボタンを押すと、属性"p1"の値を表示する
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $("input[type='button']").click(function(){ var a = $(this).attr("p1"); //属性p1を取得する alert(a); }); }); </script> </head> <body> <input type="button" value="ボタン1" p1="AA"> <input type="button" value="ボタン2" p1="BB"> <input type="button" value="ボタン3" p1="CC"> </body> </html> |
例)要素id="hoge"に、属性"p1"、値"ABC"を設定する
1 |
$("#hoge").attr("p1", "ABC"); |
解説
- 通常の属性も同じようにattrで取得/設定ができます。