标签: angularjs angularjs-ng-form
我有一个ng-form="step1",其中填充了db的数据。
ng-form="step1"
当用户更改输入框中的某些内容或选择其他收音机时,我想显示Update Button。
Update Button
此按钮最初会隐藏。
怎么做?
感谢您的帮助
答案 0 :(得分:1)
使用angularjs的$ dirty函数
例如
<input type="button" class="btn btn-primary" value="update" ng-show="changedetect.$dirty" />