我一直在試圖讓我的網站上的下一個按鈕繼續從當前的數字。但是每次都從1開始。任何幫助,我讚賞。 所以這裏發生的是當我點擊pNext按鈕它應該改變一個H1和段落,並且在我創建的八個不同選項之間循環。使下一個按鈕繼續從當前的「數字」
我有幾個按鈕直接鏈接到每個單獨的數組。 所以一個數字7按鈕。如果點擊了下7後點擊下一步,我希望它轉到8> 1> 2>,等等。但它直接進入1.
<!-- NEXT BUTTON -->
<script>
$(document).ready(function() {
var textArray = [];
textArray[0] = "market.';
textArray[1] = 'area.';
textArray[2] = 'involved.';
textArray[3] = 'solution.';
textArray[4] = 'situation.';
textArray[5] = 'unit.';
textArray[6] = 'place.';
textArray[7] = 'parts.';
var idx = 0;
$('#pNext').on('click', function(){
idx++;
var newidx = idx % textArray.length;
$('#pText').text(textArray[newidx]);
});
});
$(document).ready(function() {
var textArray = [];
textArray[0] = 'Better';
textArray[1] = 'Better';
textArray[2] = 'Safer';
textArray[3] = 'Intuitive';
textArray[4] = 'One';
textArray[5] = 'Better';
textArray[6] = 'Theft';
textArray[7] = 'Quality';
var idx = 0;
$('#pNext').on('click', function(){
idx++;
var newidx = idx % textArray.length;
$('#pHeadline').text(textArray[newidx]);
});
});
$(document).ready(function() {
var textArray = [];
textArray[0] = '1';
textArray[1] = '2';
textArray[2] = '3';
textArray[3] = '4';
textArray[4] = '5';
textArray[5] = '6';
textArray[6] = '7';
textArray[7] = '8';
var idx = 0;
$('#pNext').on('click', function(){
idx++;
var newidx = idx % textArray.length;
$('#pNumber').text(textArray[newidx]);
});
});
</script>
似乎在這裏工作 - https://jsfiddle.net/ezeqy5ff/4/ –
@ freedomn米宰我 – TheWandererr
你的代碼看起來它包含一些重複的部分,你可以至少作爲html部分發送? – mondersky