angular實現多個div的展開和折疊


代碼:

<body ng-app="app">
    <ul ng-controller="myCtrl" style="list-style:none;">
        <li ng-repeat="li in list track by $index" style="margin:5px;">
            <div style="background:#f38f8f;width:150px;height:30px;line-height:30px;color:#fff;" ng-click="show($index)">我是標題</div>
            <div style="background:#ccc;width:150px;height:50px;" ng-show="li.show">我是內容</div>
        </li>
    </ul>

<script type="text/javascript">
    var app=angular.module('app', []);
    app.controller('myCtrl',function($scope){
        $scope.list=[
            {show:'true'},
            {show:'true'},
            {show:'true'},
            {show:'true'}
        ];
        $scope.show=function($index){
            $scope.list[$index].show=!$scope.list[$index].show;
        }
    })
</script>
</body>

如圖:


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM