2017-05-04 102 views
0

我有內置的JS和引導進度條,代碼波紋管Porgress酒吧重定向100%

var totalCountries = 10; 
var currentCountries = 0; 
var $progressbar = $("#progressbar"); 

$("#next, #next1").on("click", function(){ 
    if (currentCountries >= totalCountries){ return; } 
    currentCountries++; 
    $progressbar.css("width", Math.round(100 * currentCountries/totalCountries) + "%"); 
}); 

在每次按下按鈕欄的增長,我想,當進度條達到100%被重定向到任一頁面。任何想法如何做到這一點?

+3

的【如何重定向到的JavaScript/jQuery的另一個網頁?]可能的複製(http://stackoverflow.com/questions/503093/how-to-redirect-to-another-webpage-in-javascript -jquery) – forgivenson

回答

0

當你的currentCountries等於你的totalCountries你可以做一個重定向。

$("#next, #next1").on("click", function(){ 
    currentCountries++; 
    $progressbar.css("width", Math.round(100 * currentCountries/totalCountries) + "%"); 

    if (currentCountries >= totalCountries){ 
    window.location = "http://www.yoururl.com"; 
    } 
}); 
+0

謝謝,這是正確的解決方案 – LiveDigi