-3
私はAngularJs形式のテキストボックスを持っています。現在、モーダルポップアップを開くためにng-changeを使用しています。しかし、フォーカスがテキストボックスに当たったときにポップアップを開きたいと思います。現在のコードは以下の通りです:On TextboxフォーカスオープンポップアップAngularJs
<div class="form-group col-lg-6">
<div class="input-group col-md-6">
<span class="input-group-addon">
<i class="glyphicon glyphicon-search"></i>
</span>
<input type="text" class="form-control" required="" placeholder="Search the group" ng-model="searchDatalocation" ng-change="searchUsers()" name="searchValue">
</div>
</div>
<span style="color:red" ng-show="submitted == true && mainForm.searchValue.$error.required">Data is required</span>
フォーカスのポップアップを開くにはどうすればいいですか? ng-change以外の他のイベントがありますか? おかげ