AngularJS在Pristine上的帮助文本(有​​焦点)

时间:2014-06-23 21:51:30

标签: jquery angularjs angularjs-directive

我要求当文本框 pristine 时,如果用户在其中单击,则会显示该帮助文本。

 <input name="Country" ng-model="Country">
 <p ng-show="form.Country.$pristine && ?????">Enter your country</a>

不确定如何获得&#34; 有焦点&#34;以及 ng-show

1 个答案:

答案 0 :(得分:1)

您可以使用ngFocus,例如:

<input name="Country" ng-model="Country" ng-focus="focused = true">
<p ng-show="form.Country.$pristine && focused">Enter your country</a>