I want to click on the blank space to disappear. How to achieve urgent request!
Do I need to use instructions to achieve it?
<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>
给我你的怀抱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