2017-05-06 62 views
3

我在我的應用程序中包含了smartwizard格式的表單,並且在插入過程中效果很好。 但是,在更新過程中,我想顯示所有訪問的步驟,以便用戶不必點擊下一個按鈕,而是直接進入他/她想要的選項卡。 我該如何做到這一點? 我知道我可能要做出的_setEvents功能在主js文件,即jquery.smartWizard.min.js變化,但我似乎無法弄清楚..在smartwizard中激活的所有步驟4

回答

1

找到了答案在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 
0

嘗試設置enableAllSteps爲true:

$('#wizard').smartWizard({enableAllSteps: true}); 
相關問題