suchen

Heim  >  Fragen und Antworten  >  Hauptteil

angular.js - angularJS 点击显示,然后再点击消失怎么用.directive 指令做。

$scope.facePanel = false;

    $scope.showFace = function () {
        $scope.facePanel = !$scope.facePanel;
    }
    这是我在controller里面的代码
黄舟黄舟2744 Tage vor519

Antworte allen(2)Ich werde antworten

  • PHP中文网

    PHP中文网2017-05-15 17:02:04

    都隐藏了你还怎么点击元素再让显示?
    如果是点击一个button让另一个元素隐藏的话还是很好实现的!
    html

    <button ng-click="showFace()">点击</button>
    <p ng-show="facePanel">要显示或隐藏的元素</p>
    
    

    不用函数了,稍微改下就行
    <button ng-click="$scope.facePanel=!$scope.facePanel">点击</button>

    Antwort
    0
  • 伊谢尔伦

    伊谢尔伦2017-05-15 17:02:04

    js

    angular.directive('aDirective', [function(){
        return {
            restrict: 'E',
            template:'<p a-directive><p ng-show="facePanel">元素</p><button ng-click="showFace()">点击</button></p>',
            replace: true,
            link: function(scope, ele, attr){
                scope.facePanel = false;
                scope.showFace = function () {
                    scope.facePanel = !$scope.facePanel;
                } 
            }
        }
    }])
    

    html

    <a-directive></a-directive>

    Antwort
    0
  • StornierenAntwort