我尝试使用这种情况:

<a href="/products/" ng-if="filterPriceFrom == 0 || filterPriceFrom > 0 && filterPriceTo < 200000" class=" tag">
  {{ filterPriceFrom }} - {{ filterPriceTo }}
  <span ng-click="cleanPriceSlider()" class="tag-close"></span>
</a>

除了那部分,一切正常:
filterPriceFrom == 0

谁能解释为什么???

最佳答案

我认为应该是:

ng-if="filterPriceFrom === 0 || (filterPriceFrom > 0 && filterPriceTo < 200000)"

关于javascript - 为什么ng-if不起作用?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37077905/

10-09 14:57