recherche

Maison  >  Questions et réponses  >  le corps du texte

angular.js - angularjs使用路由跳转到某个view的时候,如何执行js来修改一个导航菜单某一项为激活状态

angularjs使用路由跳转到某个view的时候,如何执行js来修改一个导航菜单某一项为激活状态,下面是我现在的代码

<script type="text/javascript"> var mainapp = angular.module('mainapp', ['ngRoute']); mainapp.config(function(${routeProvider}) { ${routeProvider} .when('/', { templateUrl : 'marry.php?cid=123&view=home', controller : 'mainController' }) .when('/home', { templateUrl : 'marry.php?cid=123&view=home', controller : 'mainController' }) .when('/process', { templateUrl : 'marry.php?cid=123&view=process', controller : 'mainController' }) .when('/message', { templateUrl : 'marry.php?cid=123&view=message', controller : 'mainController' }); }); mainapp.controller('mainController', function(${scope}) { ${scope}.message = 'Everyone come and see how good I look!'; }); </script>
曾经蜡笔没有小新曾经蜡笔没有小新2744 Il y a quelques jours800

répondre à tous(3)je répondrai

  • 漂亮男人

    漂亮男人2017-05-15 16:54:00

    Code approximatif :

    html<body ng-app="app">
        <ul>
            <li><a href="#/" ng-class="{active:path=='/'}">index</a></li>
            <li><a href="#/a" ng-class="{active:path=='/a'}">a</a></li>
            <li><a href="#/b" ng-class="{active:path=='/b'}">b</a></li>
        </ul>
        <p ng-controller="main">
            <p ng-view></p>
        </p>
        <script type="text/javascript">
        var app = angular.module('app', ['ngRoute']);
    
        app.config(['$routeProvider', function($routeProvider) {
    
            $routeProvider
                .when('/', {
                    template: '/index',
                    controller: 'test'
                })
                .when('/a', {
                    template: '/a',
                    controller: 'test'
                })
                .when('/b', {
                    template: '/b',
                    controller: 'test'
                })
                .otherwise({
                    redirectTo: '/'
                });
    
        }]);
    
        app.run(['$rootScope', '$location', function($rootScope, $location) {
    
            $rootScope.$on('$routeChangeSuccess', function(newV) {
                $rootScope.path = $location.path()
            });
    
        }]);
    
        app.controller('main', ['$scope', function($scope){
    
        }]);
    
        app.controller('test', function() {});
    
    
        </script>
    </body>
    

    Si vous souhaitez voir quelques exemples et de la documentation, je les ai aussi sur github
    Ressources d'apprentissage : https://github.com/dolymood/AngularLearing
    Exemple simple : https://github.com/dolymood/angular-example
    Téléchargez les packages et la documentation https://github.com/dolymood/angular-packages

    répondre
    0
  • 習慣沉默

    習慣沉默2017-05-15 16:54:00

    Placez l'effet d'activation sur chaque élément du menu à l'avance, mais ne l'affichez pas

    ;

    Transmettez ensuite la valeur spécifique à la page d'accueil pour afficher l'état d'activation spécifique

    Par exemple

    <span class="highlight" ng-show="tab == 1"></span>
    <span class="highlight" ng-show="tab == 2"></span>
    <span class="highlight" ng-show="tab == 3"></span>
    <span class="highlight" ng-show="tab == 4"></span>
    

    Il vous suffit de passer la valeur de tabulation correspondante dans le contrôleur

    $scope.tab = 1 // 显示第一个为激活状态
    

    Ou utilisez cette méthode

    <p ng-class='{active:isActive'>
    
    .active{
        ...
    }
    

    Contrôlez la valeur vrai/faux de isActive dans le contrôleur angulaire

    répondre
    0
  • 阿神

    阿神2017-05-15 16:54:00



    <script type="text/javascript"> var mainapp = angular.module('mainapp', ['ngRoute']); mainapp.config(function(${routeProvider}) { ${routeProvider} .when('/', { templateUrl : 'marry.php?cid=123&view=home', controller : 'mainController' }) .when('/home', { templateUrl : 'marry.php?cid=123&view=home', controller : 'mainController' }) .when('/process', { templateUrl : 'marry.php?cid=123&view=process', controller : 'mainController' }) .when('/message', { templateUrl : 'marry.php?cid=123&view=message', controller : 'mainController' }); }); mainapp.controller('mainController', function(${scope}) { ${scope}.message = 'Everyone come and see how good I look!'; }); </script> <ul class="ul_nav"> <li ng-class="{active:path=='#/invitation'}"><a href="#/invitation" class="nav_01"></a></li> <li ng-class="{active:path=='#/map'}"><a href="#/map" class="nav_02"></a></li> </ul>

    Bonjour, je ne connais pas très bien Angularjs. Notre projet utilise uniquement la fonction de routage d'Angularjs. Pouvez-vous m'aider à le modifier directement en fonction du code ci-dessus ?

    répondre
    0
  • Annulerrépondre