gpt4 book ai didi

javascript - 基于 bool 值的 Angular 开关外层 Div

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

我使用的是 Angular 1.4.7,需要执行以下操作

<div ng-if="varIsTrue">
<div ng-if="!(varIsTrue)" my-custom-directive>
A lot of content
</div>

所以基本上,如果设置了 div,则只会显示正确的 div。我尝试用 ng-if 和 ng-show 做一些变体,但我相信因为浏览器渲染 dom 的方式会弄乱多个 div,但这就是我想要的概念。有谁知道我怎样才能做到这一点?

最佳答案

你不能这样做,你应该有 2 个结束标签

<div ng-if="varIsTrue">
</div>
<div ng-if="!(varIsTrue)" my-custom-directive>
A lot of content
</div>

否则您将必须切换到 my-custom-directive

关于javascript - 基于 bool 值的 Angular 开关外层 Div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38984423/

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