我正在使用anuglar.js表單驗證。 我想檢查沒有表單提交按鈕的驗證。驗證的角度形式不提交按鈕
這是我的html。
<form name="userForm">
<input type="hidden" ng-model="StandardID" />
<div class="form-group">
<label for="email">Name:</label>
<input type="text" class="form-control" ng-model="Name" placeholder="Name" maxlength="50" required>
<span ng-show="userForm.Name.$dirty && !userForm.Name.$valid">Name is required.</span>
</div>
<div class="form-group">
<label for="pwd">Alias:</label>
<input type="text" class="form-control" ng-model="Alias" placeholder="Alias" maxlength="50" required>
</div>
<button type="submit" class="btn btn-info" ng-click="update()">Submit</button>
<button type="submit" class="btn btn-info" data-dismiss="modal">Cancel</button>
</form>
我的控制器js是。
$scope.update= function() {
alert($scope.userForm.Name.$valid);
if ($scope.userForm.Name.$valid) {
alert("Entry added");
}
}
它顯示說明該字段是必需的小對話框。我不想要這個彈出窗口。爲什麼跨度部分不顯示?
無法正常工作。我之前做過,但我不知道這段代碼有什麼問題。爲什麼跨度部分沒有顯示。 – user3248761