Home  >  Q&A  >  body text

angular.js - 用AngularJS做菜单栏鼠标点击显示。点击空白处消失。

我想要点击空白处消失。如何实现急求!
需要用指令实现吗?
<p ng-app="myApp">

<p ng-controller="ctrl">
    <ul>
        <li ng-click="animate()">点击我身上显示id为Demo的li<li>
        <li ng-show="flag">我是id为Demo的li</li>
    <ul>
</p>

</p>
<script>

angular.module("myApp",[])
    .controller('ctrl',['$scope',function($scope){
        $scope.flag = false;
        $scope.animate = function(){
            $scope.flag = !$scope.flag;
        }
    }])

</script>

阿神阿神2736 days ago530

reply all(1)I'll reply

  • 给我你的怀抱

    给我你的怀抱2017-05-15 17:03:17

    Just bind a click event on html or document or body.

    It’s up to you whether to use specific instructions or implementations

    reply
    0
  • Cancelreply