我在我的应用程序上使用了
jQuery-steps,以获得类似向导的情况.我很难找出如何改变自定义步骤.有这个帮助吗?
$(function () { $("#wizard").steps({ headerTag: "h2",bodyTag: "section",transitionEffect: "slideLeft",enableFinishButton: false,labels: { next: $('#next').html(),prevIoUs : $('#prevIoUs').html() },onStepChanged: function (event,currentIndex,priorIndex) { if( priorIndex == 0) { var selected = $('input[name=radio_wizard]:checked','#radio_wizard').val() switch( selected ){ case 1: // GOTO 1 break; case 2: // GOTO 2 break; case 3: // GOTO 3 break; } } } }
如何实现这一点?