我只想div
在函数发生时显示。
这是 HTML,但它总是显示,我希望它仅在函数为 true 时显示
<div ng-controller="controller">
<div ng-show="data.show"> Successfully triggered </div>
<div ng-hide="!(data.hide)"> Error in triggering</div>
</div>
在控制器中我有:
if(results.data=='success') {
$scope.data = {
show: false,
hide: true
};
//Here I should display the success message
} else {
//Here I should display the error message
}
那么,如何在 if 条件下显示成功,在 else 条件下显示div
错误。div
注意:如果可能的话,如果div
以慢动作显示,这对我很有帮助。就像 jQuery 中的淡入淡出时间一样。