以下のコードでは、赤、青、緑、および茶色の行が表示されることを期待していますが、nextUntil 引数が無視されているかのように、赤を除くすべての行が非表示になっているように見えます。手がかりはありますか?ありがとう。
いくつかの調査の後、私は両方を試しました
$("#firstrow").nextUntil('span[class="hues"]').hide();
と
$("#firstrow").nextUntil('span:not(.colors)').hide();
HTML:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"/>
<script>
$(document).ready(function() {
$("#firstrow").nextUntil('span[class="hues"]').hide();
//$("#firstrow").nextUntil('span:not(.colors)').hide();
});
</script>
</head>
<body>
<table id="colortable">
<tr id="firstrow">
<span class="colors">Red</span>
</tr>
<tr>
<span class="colors">Orange</span>
</tr>
<tr>
<span class="hues">Blue</span>
</tr>
<tr>
<span class="shades">Green</span>
</tr>
<tr>
<span class="colors">Brown</span>
</tr>
</table>
</body>
</html>