0

我从这里使用 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>

请帮我获取当前的步数索引,我真的需要它但找不到怎么做。

4

1 回答 1

0
var dataJwizardIdCurrentStep = jQuery(".jw-steps-wrap >div").filter(function () {
                    if (this.style.display == 'block') {
                        return (this.style.display == 'block');
                    }
                });
于 2013-11-15T12:22:10.650 回答