ng-model directive is used to bind application data to HTML controller (input, select, textarea) values.

AngularJS ng-model directive syntax

ng-model directive is used to bind application data to HTML controller (input, select, textarea) values.

AngularJS ng-model directive example

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/angular.js/1.4.6/angular.min.js"></script> 
</head>
<body>

<div ng-app="myApp" ng-controller="myCtrl">
名字: <input ng-model="name">
</div>

<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
    $scope.name = "John Doe";
});
</script>

<p>使用 ng-model 指令来绑定输入域的值到控制器的属性。</p>

</body>
</html>

Run instance »

Click the "Run instance" button to view the online instance