0

在第一次初始化 smartWizard 时,我得到 showStep 事件的 NULL stepIndex。但是,我希望这是 0 或“选定”中设置的任何值。

当我单击下一步时,它将记录索引 0 而不是 1,依此类推。

我确定我做错了什么,但无法弄清楚这一点。

$('#smartwizard').smartWizard({
 selected: 0,
 theme: 'arrows',
 enableURLhash: false,
 toolbarSettings: {
 showPreviousButton: false,
 toolbarPosition: 'bottom'
 },
 anchorSettings: {
 anchorClickable: false, // Enable/Disable anchor navigation
 },
 });

 $('#smartwizard').on("showStep", function(e, anchorObject, stepIndex, stepDirection) {
    console.log(stepIndex);
  });


});
4

0 回答 0