0
に対する元素にコードを経由して表示おそらく最も簡単なのはどのように見つけるか:私は現在の要素
<form>
<select class="some-jquery-class">...</select>
<input type="submit" value="submit">
</form>
<form>
<select class="some-jquery-class">...</select>
<input type="submit" value="submit">
</form>
<form>
<select class="some-jquery-class">...</select>
<input type="submit" value="submit">
</form>
その後jqueryのように見えること:私は要素の相対を見つけるにはどうすればよい
$(".some-jquery-class").click(function() {
// change the color of the submit button underneath and not any other
});
選択された要素?
を使用してjQueryのツリートラバーサル機能を参照してくださいすることを得ることができます:http://api.jquery.com/category/traversing/tree-traversal/ –