我试图用一个例子。
这一切都很好,但我需要在顶部点击这些步骤。我试过了:
var clickedIndex;
$('#progressbar').click(function(){
clickedIndex=$(this).attr(id);
});
current_fs=index(clickedIndex);
并更新了其他一些相关的地方,但它并没有让我到任何地方。
Here是一个有效的例子。
答案 0 :(得分:0)
$('#progressbar li').on('click', function(){
var step = $(this).index() - 1;
$('fieldset').eq(step).find('.next').trigger('click');
});
它会触发单击已单击步骤的next
按钮