”tagName”で先頭or〇〇番目のタグ名を見る!jQueryでタグの名前を取得する方法2種類
■prop("tagName")で取得する
console.log( $("#hello").prop("tagName") );
出力例) "INPUT"
helloの中の先頭しか取れないので使いどころ注意!
■get(n番目)+tagNameで見る
console.log( $(".aaaa").get(0).tagName );
出力例) "DIV"
console.log( $(".aaaa").get(1).tagName );
出力例)"DIV"
指定したクラス名やIDの中の●●番目のタグ名を知りたい!という時にはこんな感じで参照ができます。試してみてください。
Warning: Undefined variable $postID in /home/foodheart/flashbuilder-job.com/public_html/wp-content/themes/stingerplus/single.php on line 87