试过的代码:
我已经添加了工具栏部分代码..仍然无法正常工作。有人可以帮我吗?
$('#wizard').smartWizard({
transitionEffect: 'slide',
keyNavigation: false,
onLeaveStep:leaveAStepCallback,
onShowStep:showAStepCallBack,
labelNext:'Save',
labelPrevious:'Back',
labelFinish:'Finish',
enableFinishButton: true,
selected: 0,
// step bar options
toolbarSettings: {
toolbarPosition: 'bottom', // none, top, bottom, both
toolbarButtonPosition: 'left', // left, right
showNextButton: false, // show/hide a Next button
showPreviousButton: true, // show/hide a Previous button
toolbarExtraButtons: ['NextBtn']
},
});
预期产出
我正在尝试在“下一步”按钮附近再添加一个按钮。