我使用这段代码,但是当我点击下一个按钮时,锚总是可以点击的。我想禁用锚点步骤导航。我怎么能做到这一点?这是我的初始化函数...
$('#smartwizard').smartWizard({
onFinish: function () {
$('#formTemplates').submit();
},
anchorSettings: {
anchorClickable: false, // Enable/Disable anchor navigation
enableAllAnchors: false, // Activates all anchors clickable all times
markDoneStep: true, // add done css
enableAnchorOnDoneStep: false // Enable/Disable the done steps navigation
},
});