Bind option value to model

Description

The following code shows how to Bind option value to model.

Example


<!DOCTYPE html>
<html  ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
</head><!--   w  w w  .jav a 2 s.c o  m-->
<body ng-app="myApp">
  <div ng-controller="MyCtrl">
  <select ng-model='select'>
      <option>....</option>
      <option value='one'>One</option>
      <option value='Two'>Two</option>
    </select>

    <div>You selected: {{select}}</div>
</div>
<script type='text/javascript'>
var myApp = angular.module('myApp',[]);

//myApp.directive('myDirective', function() {});
//myApp.factory('myService', function() {});

function MyCtrl($scope) {
}
</script>
</body>
</html>

Click to view the demo





















Home »
  AngularJS »
    AngularJS Example »




Controller
Directives
Expression
Filter
Form
Inject
Scope
Server
Style
Template
Utilities