gpt4 book ai didi

javascript - Bootstrap 向导 : onPrevious not working with if index?

转载 作者:行者123 更新时间:2023-11-28 04:15:41 24 4
gpt4 key购买 nike

我在我的一个应用程序中使用 Bootstrap 向导,但我注意到当我尝试使用选项卡的索引位置来实现某个目标时,它只能与下一个按钮配合使用,而不能与上一个按钮配合使用。 onPrevious 有效,只是不会进入 if 语句。

$('#rootwizard').bootstrapWizard({
'tabClass': 'bwizard-steps',
onTabClick: function(tab, navigation, index) {
return false;
},
onNext: function(tab, navigation, index) {

alert('this works');

if (index === 1) {
alert('this works');
}

},
onPrevious: function(tab, navigation, index) {

alert('this works');

if (index === 2) {
alert('this doesn't work');
}
}
});

我的目标是特定于第二个选项卡的上一个按钮,但尽管代码与 onNext 女巫完全相同,但它根本无法工作。有什么想法吗?

最佳答案

如果您有两个选项卡,则索引为 0 和 1,而不是 1 和 2

index 具有您将要到达的选项卡的值,而不是您所在的选项卡

关于javascript - Bootstrap 向导 : onPrevious not working with if index?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45880247/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com