jQueryを使用してクリックするたびに、逆順(降順)で特定の要素から「n」個の連続した要素を選択する方法は?以下の例では jQueryを使用してクリックするたびに、逆順(降順)で特定の要素から「n」個の連続する要素を選択するにはどうすればよいですか?
は、私は、最初のクリックで三 <li> 4th 4</li> <li> 4th 4</li> <li> 4th 4</li> <li> 4th 4</li>
おかげで <li> 2nd 4</li> <li> 2nd 4</li> <li> 2nd 4</li> <li> 2nd 4</li>
し、2回目のクリックでこれらの、 <li> 1st 4</li> <li> 1st 4</li> <li> 1st 4</li> <li> 1st 4</li>
及びこれらをこれらを(addClass)を選択しますロットは事前に。第3回クリックして、点で最大 'n' の数字上の第二クリックし、次の4の最初のボタンをクリックし、次の4の
$(document).ready(function(){
var n = 0;
$(".btn").on('click', function(){
$("li")
.removeClass("selected")
.slice(n, n += 4)
.addClass("selected");
if (n >= $("li").length) n = 0;
});
});
.btn{ text-decoration:none; background:blue; color:#fff; padding:5px; border-radius:4px;float:left;}
ul{ list-style:none;float:left;clear:both;}
ul li{ padding:5px;background:#555; color:#fff; float:left; border-radius:2px; margin:2px; }
.selected{ background:red;}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<a class="btn">select prev 4 consecutive elements</a>
<ul>
<li> 1st 4</li>
<li> 1st 4</li>
<li> 1st 4</li>
<li> 1st 4</li>
<li> 2nd 4</li>
<li> 2nd 4</li>
<li> 2nd 4</li>
<li> 2nd 4</li>
<li class="selected"> 3rd 4</li>
<li class="selected"> 3rd 4</li>
<li class="selected"> 3rd 4</li>
<li class="selected"> 3rd 4</li>
<li> 4th 4</li>
<li> 4th 4</li>
<li> 4th 4</li>
<li> 4th 4</li>
</ul>
。
の可能性のある重複した[jQueryのを使用してすべてのクリックの次の 'n' 個の連続する要素を選択する方法?](https://stackoverflow.com/質問/ 47087171/how-to-select-next-n-continuous-elements-on-click-using-jquery) – guradio