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

友情提示: 此问题已得到解决,问题已经关闭,关闭后问题禁止继续编辑,回答。