我对角度非常陌生,我已经有服务经验,我需要事故征候帮助,一旦用户单击该按钮应该隐藏或读取的按钮,我就有一个角度按钮(创建此事件)只有任何代码帮助 代码:
<div>
<button class="btn btn-primary" ng-click="$root.trigger()">Create this ticket</button>
<hr/>
<h3 class="show-font"><b>OPTIONAL INFORMATION</b></h3>
<!--<p class="text-muted small">This will help us understand who should be looking into your ticket.</p>-->
</div>
答案 0 :(得分:1)
创建一个变量使其默认为true;
isShow=true;
在元素中有条件时提供按钮
ng-if="isShow"
当您点击时,将点击功能赋予HTML ng-click="test()"
更改
test(){
this.isShow=!this.isShow;
}