Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个ng-form="step1"填充了来自 db 的数据。
ng-form="step1"
当用户在输入框中更改某些内容或选择不同的收音机 btn 时,我想显示一个Update Button.
Update Button
这个按钮一开始是隐藏的。
这该怎么做?
感谢帮助
使用 angularjs 的 $dirty 函数
例子
<input type="button" class="btn btn-primary" value="update" ng-show="changedetect.$dirty" />