我要求当文本框 pristine 时,如果用户在其中单击,则会显示该帮助文本。
<input name="Country" ng-model="Country">
<p ng-show="form.Country.$pristine && ?????">Enter your country</a>
不确定如何获得&#34; 有焦点&#34;以及 ng-show
答案 0 :(得分:1)
您可以使用ngFocus
,例如:
<input name="Country" ng-model="Country" ng-focus="focused = true">
<p ng-show="form.Country.$pristine && focused">Enter your country</a>