我已经使用了这个插件:
http://vinceg.github.io/twitter-bootstrap-wizard/
最后,下一个按钮正在被禁用,任何人都可以帮助我如何启用它。
最佳答案
为此,您必须使用以下功能:
$('#rootwizard .finish').click(function() {
$('#rootwizard').find("a[href*='tab1']").trigger('click'); // if you want to go to first tab again. Else do what ever you want to do like enable next button again.
});
您必须在最后一个按钮中完成类(class)。
如果您只想在下一个按钮上执行操作,则可以执行以下操作:
$('#rootwizard').bootstrapWizard({onTabShow: function(tab, navigation, index) {
var $total = navigation.find('li').length;
var $current = index+1;
if($total == $current){do what you want on last next button.} }});