我有步驟的角JS嚮導:角JS和驗證步步
<wizard on-before-step-change="log(event)" on-step-changing="log(event)" on-after-step-change="log(event)" user="user">
<step title="step 1">
</step>
<step title="step 2">
</step>
<step title="step 3">
</step>
</wizard>
和在每一個步驟有輸入字段和我期待以驗證在每個時間步驟中,當用戶點擊我的下一個按鈕:
<a class="btn btn-default" ng-click="gotoNextStep()" ng-show="showNextButton()">Next</a>
,這裏是click事件:
$scope.gotoNextStep = function() {
//Validation
toggleSteps($scope.currentStepIndex + 1);
}
我一直在尋找使用jQuery驗證和在我的每個輸入字段中都有必需的類,但是如果我沿着這條路走下去,我該如何驗證一次一步?或者有更好的方法去解決這個問題嗎?我已經做了一些關於這個問題的搜索,但我發現我發現的例子非常混亂和複雜......任何幫助將不勝感激。
THanks。
是否每一步都有它自己的按鈕? –
不,他們不這樣做,這個按鈕用於所有步驟 – user3723240