jQuery Jwizard获得当前步骤

时间:2013-11-15 11:12:27

标签: jquery jwizard

我正在使用来自here的jQuery jWizard 这是我的初始化:

jQuery("#jWizardResourceCreate").jWizard({
        counter: { enable: true },
        effects: { enable: true },

    });

我有4个步骤:

<div id="jWizardResourceCreate">
    <div id="step1">

    </div>
    <div id="step2">

    </div>
    <div id="step3">

    </div>
     <div id="step4">

    </div>
</div>

请帮助我获取当前步骤索引,我真的需要它但无法找到如何做到这一点。

1 个答案:

答案 0 :(得分:0)

var dataJwizardIdCurrentStep = jQuery(".jw-steps-wrap >div").filter(function () {
                    if (this.style.display == 'block') {
                        return (this.style.display == 'block');
                    }
                });