智能向导4中的所有步骤均已激活

我已经在我的应用程序中的表单中包含了smartwizard,并且在插入期间它运行良好。 但是,在更新期间,我想显示所有访问过的步骤,以便用户可以直接访问他/她想要的选项卡,而不是单击下一个按钮。 我怎样才能做到这一点? 我明白我可能要在主js文件中的_setEvents函数中进行更改,即jquery.smartWizard.min.js,但我似乎无法弄清楚..

在anchorSettings中找到答案。 您添加anchorSettings参数并更改值如下,

anchorClickable : true, // Enable/Disable anchor navigation enableAllAnchors : true, // Activates all anchors clickable all times markDoneStep : true, // add done css enableAnchorOnDoneStep : true // Enable/Disable the done steps navigation 

尝试将enableAllSteps设置为true:

 $('#wizard').smartWizard({enableAllSteps: true});