1

私はうまく機能するJQuery Stepsを使用しています。しかし、「次へ」ボタンのテキストをステップごとに異なるように変更する方法がわかりません。おそらくonStepChangedメソッド内でそれを行う方法はありますか?

4

2 に答える 2

3

これはあなたの答えです。

$(function ()
{
    var settings = {
        headerTag: "h2",
        bodyTag: "section",
        transitionEffect: "slideLeft",
            labels: 
            {
               next: "Enroll",
               finish: "Pay Now",
            },
        onStepChanged: function (event, currentIndex, newIndex)
            {       
                //change color of the Go button
                //alert(currentIndex);
                if(currentIndex==1){
                $(".actions a:eq(1)").text("Checkout");
                }else{
                    $(".actions a:eq(1)").text("Enroll");
                }

            },

    };
    $("#wizard").steps(settings);
});
于 2017-01-05T10:48:29.563 に答える