検索

ホームページ  >  に質問  >  本文

angular.js - angularjs标签切换

 $scope.peopleprofile = true;
    $scope.peoplesettings = false;
    if( $scope.locationpath == '/peopleProfile'){
        $scope.peopleprofile = true;
        $scope.peoplesettings = false;
    }else if( $scope.locationpath == '/peopleSettings'){
        $scope.peoplesettings = true;
        $scope.peopleprofile = false;
    }
    $scope.go = function(url, type){
        if( type == 'peopleprofile'){
            $scope.peopleprofile = true;
            $scope.peoplesettings = false;
        }else if( type == 'peoplesettings'){
            $scope.peoplesettings = true;
            $scope.peopleprofile = false;
        }
        routeSrvc.go(url);
    };
    


<p ng-class="{true: 'menu-item peoplesetting-nav-style', false: 'menu-item peoplesetting-nav'}[peopleprofile]" ng-controller="PersonController">
    <a class="peoplesetting-title-style" ng-click="go('peopleProfile', 'peopleprofile')"><i class="fa  fa-cog"></i>个人设置</a>
</p>
<p ng-class="{true: 'menu-item peoplesetting-nav-style', false: 'menu-item peoplesetting-nav'}[peoplesettings]" ng-controller="PersonController">
    <a class="peoplesetting-title-style" ng-click="go('peopleSettings', 'peoplesettings')"><i class="fa  fa-cog"></i>账号设置</a>
</p>

默认如下图:

点账号设置的时候 我希望当前状态在账号设置上 但是效果确是下面这样子的

路过的帮我看看是什么问题呗,先谢过啦~~~

为情所困为情所困2744日前576

全員に返信(3)返信します

  • 習慣沉默

    習慣沉默2017-05-15 16:56:49

    それを使用することをお勧めしますangularui-router、これは非常に便利で非常に強力です。時間があれば、小さなデモを書きます。


    追加:

    時間をかけてデモを書きました

    HTML ファイルのコードは次のとおりです:

    リーリー

    JS ファイルのコードは次のとおりです:

    リーリー

    CSS ファイルのコードは次のとおりです:

    リーリー

    これがお役に立てば幸いです。

    返事
    0
  • 巴扎黑

    巴扎黑2017-05-15 16:56:49

    リーリー

    返事
    0
  • PHP中文网

    PHP中文网2017-05-15 16:56:49

    オーナーさん、そこから学ぶ必要があるので、あなたの完全な例を投稿していただけますか?

    返事
    0
  • キャンセル返事