-.html
<input type="text" ng-focus="display = false" ng-blur="display = true" ng-init="display = true"> <p ng-show="display">aaa</p>
如上述代码,focus/blur可以正常控制p标签的显示与隐藏
-.html
<input type="text" ng-focus="display = false" ng-blur="hide()" ng-init="display = true"> <p ng-show="display">aaa</p>
-controller.js
$scope.hide = function (){ $scope.display = true; };
上述代码只要focus input,display一直为false, 求解。
付费偷看金额在0.1-10元之间
同理ng-focus里面也一样
ng-blur 里面写表达式就行
ng-blur="isHide"
在控制器中对isHide赋值
$scope.isHide=true;
官网文档
一周热门 更多>