jQuery で最初の子を選択するのに少し問題があります。たくさんのifステートメントを避けるためにこれをやろうとしています。基本的に、ボタンをクリックします。このクラス セレクターは、JS でクリックを処理するように設定されています。JSに入ったら、クリックしたばかりのアイテムの子を取得したいのですが、喜びがありません。
これが私のJSにあるものです:
$('.itemClicked').click(function(){
var id = $(this).attr('id').first();
// it can't find the method first() here. If I just find the id, I get the
// correct ID of what I just clicked.
var test = id.first();
// I tried the above to seperate the ID from the first() method request
// no joy with this either.
test.toggleClass("icon-tick");
// this is my ultimate aim, to toggle this icon-tick class on the item
// clicked.
});
ここで私を助けていただければ、事前に感謝します。私はおそらく愚かなことをしているだけですが、それが何であるかを理解するのに苦労しています.