jquery を使用して一部の HTML の要素を検索しようとしています。ラベル テキスト「This is my test label」および「Yest another test label」を含むリスト ID を検索して非表示にしたいと考えています。
<ul id="mylist" class="top_level_list">
<li id="field66" class="myfield">
<div class="field_icons">
<div class="title">This is my title</div>
</div>
<label class="my_label" for="input71">This is my test label</label>
</li>
<li id="field20" class="myfield">
<div class="field_icons">
<div class="title">This another test title</div>
</div>
<label class="my_label" for="input71">Yet another test label</label>
</li>
jQuery .hide 関数と .find() 関数を見つけましたが、その中のコンテンツを使用して要素を選択する方法がわかりません。
誰でも助けることができますか?