私はグーグルを上下に検索しましたが、簡単な解決策は見つかりませんでした。
これが私のコードの要旨です:
var theArray = ["one","two","three","four"];
$('.next').click(function(){
// go forward on the array
})
$('.back').click(function(){
// do backwards on the array from the current position
})
したがって、ユーザーが"<button class="next">
「1」のアラートをクリックすると、もう一度「次へ」をクリックし、「2」のアラートが表示されます...
これを行う簡単な方法はありますか?