Here we will create simple example. we will create simple for and submit button. When you click on submit button then one angular controller method will call and we will get selected radio button value using Angularjs $scope variable.

Let's see bellow example, so you can use in your app.

Example:

<!doctype html>
<html>
<head>
  <title>How to get selected radio button value in AngularJS? - ItSolutionStuff.com</title>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
</head>

<body ng-app=‘myapp’>
<h1>How to get selected radio button value in AngularJS? - ItSolutionStuff.com</h1>

<div ng-controller=“myCtrl”>
<div class=“radio”>
<label><input type=“radio” ng-model=‘sex’ ng-value=‘“male”’ name=“sex”>Male</label>
</div>
<div class=“radio”>
<label><input type=“radio” ng-model=‘sex’ ng-value=‘“female”’ name=“sex”>Female</label>
</div>
<button ng-click=“submitResult()”>See Result</button>
</div>
</body>

<script type=“text/javascript”>

var app = angular.module(‘myapp’, []);

app.controller(‘myCtrl’, function ($scope, $location) {

  $scope.sex = 'male';

  $scope.submitResult = function() {
  
    alert($scope.sex);
  };

});

</script>
</html>

I hope it can help you…

Thanks for reading

If you liked this post, share it with all of your programming buddies!

Follow us on Facebook | Twitter

Further reading about Angular and Web Workers

Angular 8 (formerly Angular 2) - The Complete Guide

Angular & NodeJS - The MEAN Stack Guide

The Complete Node.js Developer Course (3rd Edition)

The Web Developer Bootcamp

Best 50 Angular Interview Questions for Frontend Developers in 2019

How to build a CRUD Web App with Angular 8.0

React vs Angular: An In-depth Comparison

React vs Angular vs Vue.js by Example

Microfrontends — Connecting JavaScript frameworks together (React, Angular, Vue etc)

Building CRUD Mobile App using Ionic 4, Angular 8

#angular-js #angular

Radio buttons in AngularJS: How to get selected radio button value
102.95 GEEK