0
我曾在多個Twitter的嚮導選項卡中加載的形式whic我需要移動到下一個與BootstrapValidator之前驗證當前選項卡Twitter的引導驗證onNext
'onNext': function(tab, nav, index) {
var $validator=$('#staffForm').bootstrapValidator(options).bootstrapValidator('validate');
var $valid = $("#staffForm").valid(); <-- this is line 177, the error line
if(!$valid) {
$validator.focusInvalid();
return false;
}
}
我得到這個錯誤
Uncaught TypeError: undefined is not a function VM7348:177
$.bootstrapWizard.onNext VM7348:177
我在做什麼錯?