gpt4 book ai didi

javascript - 如何使用 Angular.js 验证输入类型单选按钮

转载 作者:行者123 更新时间:2023-11-29 15:31:22 24 4
gpt4 key购买 nike

我需要使用 Angular.js 验证我的单选按钮字段。让我用下面的代码解释一下。

<form name="myForm"  enctype="multipart/form-data" novalidate>
<div>
<input type="radio" ng-model="new" value="true" ng-required="!new"> new
<input type="radio" ng-model="new" value="false" ng-required="!new">Old
</div>
<input type="button" class="btn btn-success" ng-click="addData(myForm);" value="Add" ng-show="myForm.$valid"/>
</form>

这里我需要当用户没有选择任何单选按钮时用户不应该看到添加按钮。我做了一些编码但它不是那样发生的。请帮助我。

最佳答案

var app = angular.module('myApp', []);


app.controller('MyCtrl', ['$scope', function ($scope) {
$scope.people = [{
name: "John"
}, {
name: "Paul"
}, {
name: "George"
}, {
name: "Ringo"
}];
}]);
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<form name="myForm" ng-app="myApp" ng-controller="MyCtrl">
<p>Favorite Beatle</p>
<ul>
<li ng-repeat="person in people">
<label>{{person.name}}
<input type="radio" ng-model="$parent.name" name="name" value="{{person.name}}" required />
</label>
</li>
</ul>
<p><tt>myForm.$invalid: {{myForm.$invalid}}</tt></p>
<button ng-disabled="myForm.$invalid">Submit</button>
</form>

关于javascript - 如何使用 Angular.js 验证输入类型单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34542727/

24 4 0
文章推荐: javascript - Highcharts 不会在 Chrome/Safari 中将
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com