例
輸入字段的值綁定到範圍變量:
<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>
試一試» 定義和用法
在ng-model
指令結合HTML表單元素的範圍變量。
如果變量中不範圍存在,它會被創建。
句法
< element ng-model=" name "></ element >
通過的<input>的支持下,<選擇>和<textarea>的元素。
參數值
Value | Description |
---|---|
name | The name of the property you want to bind to the form field. |
相關網頁
角教程: NG-模式指令