我搜索了谷歌,並沒有找到一個簡單的解決方案。我無法弄清楚如何點擊一個數組
這裏是我的代碼JIST:
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">
我會得到的「一」的警報,他們點擊「下一步」再一次,兩個」警報「等等......
有沒有一種快速的方法來做到這一點?
BRILLIANT!完美的作品。 – jake