在第二个复选框下面的代码中,单击第一个复选框时不起作用。

http://plnkr.co/edit/JF0IftvWx7Ew3N43Csji?p=preview

HTML:

<html ng-app="App">
    <head>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular.min.js"></script>
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.1/angular-animate.min.js"></script>
    <link rel="stylesheet" type="text/css" href="animations.css" />
    <script type="text/javascript" src="script.js"></script>
    </head>
    <body>
         Click me: <input type="checkbox" ng-model="checked" ng-init="checked=true" /><br/>
         Show when checked:
         <span  ng-if="checked==true" class="animate-if">
             <input type="checkbox" ng-model="checked1" ng-init="checked1=true" />
         </span>
         <br>
         <span  ng-if="checked1==true" class="animate-if">
          test <input type="checkbox" ng-model="checked2" ng-init="checked2=true" />
         </span>
     </body>
</html>

最佳答案

如前所述,ng-if创建了它自己的作用域。

您正在我所谓的“内部范围1”中设置checked1。然后在“外部范围”中使用它。 “外部范围”看不到“内部范围1”,因此javascript在“外部范围”上创建了新的变量checked1。现在,您有两个完全不同的变量,都称为checked1 -一个在“外部范围”上,另一个在“内部范围1”上。这不是您想要的。

要解决此问题,您需要将checked1设置为与将其使用时相同的范围-“外部范围”。 “外部范围”是“内部范围1”的父级,因此我们可以像这样使用$parent.checked1 :

<input type="checkbox" ng-model="$parent.checked1" ng-init="checked1=true" />

现在只有checked1的一个副本-“外部作用域”上的一个副本。而且有效,请在此更新的插件上查看:http://plnkr.co/edit/XaPWYvYLrFRZdN2OYn6x?p=preview

10-05 22:35