【发布时间】:2017-07-03 15:23:34
【问题描述】:
我使用此代码,但是当我单击下一个按钮时,锚始终是可单击的。我想禁用锚点步骤导航。我怎么能做到这一点?这是我的初始化函数...
$('#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
},
});
【问题讨论】:
标签: javascript jquery smart-wizard