Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
いくつかのTH要素を含む html テーブルがあります。特定のTHjQuery を見つけたので、それがindexであることを知る必要があります。TH次のようなコードで見つけました:
TH
var th = $("#txtmin").parent();
どうやってやるの?
次の方法で実行できます。
$("#txtmin").closest('th').index();
$("#txtmin").parent().index();