gpt4 book ai didi

javascript - 显示以 Angular 7 隐藏 div

转载 作者:行者123 更新时间:2023-12-03 21:10:49 25 4
gpt4 key购买 nike

我正在尝试使用 ng-model 和 ng-hide 在 Angular 7 中显示/隐藏 div,但它不起作用。
button显示/隐藏-使用ng-model设置表达式

    <button type="checkbox" ng-model="show" >show/hide</button>
div显示/隐藏,使用 ng-hide隐藏 div
<div class="row container-fluid" ng-hide="show" id="divshow" >
Div Content
</div>
</body>
</html>

我试过 ng-modelng-hide仍然无法正常工作。
请提供解决方案

最佳答案

在您的 HTML 中

<button (click)="toggleShow()" type="checkbox" >show/hide</button>

<div *ngIf="isShown" class="row container-fluid" id="divshow" >
Div Content

</div>

在您的组件类中添加:
isShown: boolean = false ; // hidden by default


toggleShow() {

this.isShown = ! this.isShown;

}

关于javascript - 显示以 Angular 7 隐藏 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55375009/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com