手风琴使用纯粹的angularjs没有CSS

时间:2016-09-07 05:41:06

标签: javascript angularjs

我想隐藏其他人的详细信息并显示当前点击名称的详细信息

http://jsbin.com/tewegahobi/edit?html,js,output

<li ng-click="showDetail = true"  ng-repeat="item in items">{{item.name}}
       <span ng-show="showDetail == true">{{item.detail}}</span>
      </li>

我不确定我做得对,我可以点击显示详细信息,但是当我点击特定名称时,它不会隐藏其他人的详细信息。

1 个答案:

答案 0 :(得分:1)

您可以通过监视已使用scope单击哪个项目来一次显示一个名称。然后,您还可以使用scope定义要与ng-click一起使用的函数,以便在该用户点击值更改的项目时。每个项目都有ng-show属性,只有当项目与之前用户选择的项目匹配时才会显示该项目。

&#13;
&#13;
function TodoCrtl($scope) {
  $scope.items = [{name:"James",detail:"something of James"},{name:"John",detail:"something of John"}]

  // Holds the mame of the item clicked by the user.
  $scope.chosen = '';

  // This function is activated each time the user clicks on an element
  // with 'ng-click' that is associated with this funciton.
  $scope.setChosen = function(itemName) {
    $scope.chosen = itemName;
  }
}
        
&#13;
<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.min.js"></script>
<meta charset=utf-8 />
<title>ng-click</title>
</head>
<body>
  
<div ng-controller="TodoCrtl">

 <li ng-click="setChosen(item.name)"  ng-repeat="item in items">{{item.name}}
   <span ng-show="item.name == chosen">{{item.detail}}</span>
  </li>

</div>
</body>
</html>
&#13;
&#13;
&#13;