在我的演示中,我有一个分步表格,我需要使用活动类修复面包屑导航
一切正常,但菜单上的活动似乎不起作用。你能帮我看一下吗?
(function () {
var prevLink = '<input class="button cancel" type="button" value="cancel">';
var nextLink = '<input class="button continue" type="button" value="Continue">';
var navHTML = '<div class="prev-next">' + prevLink + nextLink + '</div>';
var FormData = [];
$(function() {
// init
$('#stepbystep > fieldset').hide().append(navHTML);
$('#first-step .cancel').remove();
$('#last-step .continue').remove();
// show first step
$('#first-step').show();
$('input.continue').click(function() {
var whichStep = $(this).parent().parent().attr('id');
$('.breadcrumb a').addClass('active');
if (whichStep == 'first-step') { }
else if (whichStep == 'second-step') { }
else if (whichStep == 'third-step') { }
else if (whichStep == 'fourth-step') { }
else if (whichStep == 'last-step') { }
$(this).parent().parent().hide(300).next().show(300);
$('.breadcrumb a').removeClass('active');
});
$('input.cancel').click(function() {
$(this).parent().parent().hide(300).prev().show(300);
});
})
}());