gpt4 book ai didi

javascript - 我不知道如何点击数组

转载 作者:行者123 更新时间:2023-11-28 11:25:45 27 4
gpt4 key购买 nike

我在 google 上搜索过,但没有找到简单的解决方案。

这是我的代码的要点:

  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">我会收到“一”的警报,他们再次单击“下一步”,收到“二”的警报,等等...

有没有快速的方法来做到这一点?

最佳答案

当然:

theArray.push(theItem = theArray.shift());
// and...
theArray.unshift(theItem = theArray.pop());

theItem 分别是第一个和最后一个项目。重复调用该函数将继续循环项目。

但是请注意,您不能再执行“在末尾添加另一个”之类的操作。为此,您需要手动跟踪“当前项目”,并递增/递减它,而不是循环项目。

关于javascript - 我不知道如何点击数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12959584/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com