jQueryでタグに付けた独自属性を取得、削除するサンプルです。
サンプルソース
例)ボタンを押すと属性の取得、削除を行う
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
<!DOCTYPE html> <html lang="ja"> <head> <title>サンプル</title> <meta charset="utf-8"> <script src="http://code.jquery.com/jquery-3.2.1.min.js"></script> <script> $(function(){ $('#btn1').click(function(event){ //独自属性「p1」の値を取得する var a = $("#txt1").attr("p1"); alert(a); }); $('#btn2').click(function(event){ //独自属性「p1」を削除する $("#txt1").removeAttr("p1"); }); }); </script> </head> <body> <input type="text" id="txt1" p1="hoge"> <input type="button" id="btn1" value="属性を取得"> <input type="button" id="btn2" value="属性を削除"> </body> </html> |
解説
- remove後に属性にアクセスすると、undefinedとなります。