angular ng-focus ng-blur 存在问题 财富值55

2016-10-19 17:37发布

-.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, 求解。

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。
该问题目前已经被作者或者管理员关闭, 无法添加新回复
4条回答

同理ng-focus里面也一样

ng-blur 里面写表达式就行
ng-blur="isHide"

在控制器中对isHide赋值
$scope.isHide=true;

一周热门 更多>