html:<input ng-model="zs.name"/>
js:app.controller('控制器的名字',function($scope){
$scope.zs={
name:'张三',
age:18
}
})
这样$scope.zs.name变化会使input的value值改变,同时input的oninput事件触发时会通知$scope.zs.name改变
html:<input ng-model="zs.name"/>
js:app.controller('控制器的名字',function($scope){
$scope.zs={
name:'张三',
age:18
}
})
这样$scope.zs.name变化会使input的value值改变,同时input的oninput事件触发时会通知$scope.zs.name改变