自動進行機能を備えたjQueryスライダーがあります。しかし、最後のスライドに到達した後、最初のスライドに戻る方法を知りたいです。currentSlide 変数 (表示中の現在のスライドのインデックスを保持する) は、最後のスライドに到達した後にゼロに戻ることなく、どんどん大きくなり続けます。スライダー自体のすべての jQuery スクリプトは含めていません。コードは次のとおりです。
<html>
<head>
</head>
<body>
<div class="slider" data-slide="0">
<div class="slide"></div>
<div class="slide"></div>
<div class="slide"></div>
<div class="slide"></div>
</div>
<script type="text/javascript" src="js/jquery-1.7.2.js"></script>
<script type="text/javascript">
$(window).load(function(){
var currentSlide = $(".slider").attr("data-slide"); /*Every time a slide is viewed, the index number of that slide is added to an html5 data- attribute. That way, we know what slide we are on. This var stores that information. */
var timeOut = null;
(function autoAdvance(){
$('.sliderNav').find('.sliderTrigger' + (currentSlide)).trigger('click',[true]); /* Automatically click the trigger that will advance the slider to the next slide. */
currentSlide++;
timeOut = setTimeout(autoAdvance,5000);
})();
});
</script>
</body>
</html>