AngularJS ng-model
指令
定义和用法
ng-model
指令绑定了 HTML 表单元素到 scope 变量中。
如果 scope 中不存在变量, 将会创建它。
语法
<element ng-model="name"></element>
<input>, <select>, 和 <textarea> 元素支持该指令。
参数值
值 | 描述 |
---|---|
name | 要绑定到表单域的属性名。 |
相关页面
Angular Tutorial: ng-model 指令