Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
のng-Change場合、オンの場合にのみトリガーする方法はありblurますか? jqueryに似ていon('change')ますか?
ng-Change
blur
on('change')
私はこれをangular行うための純粋な方法を探しています。
angular
ng-model-options を使用する
$scope.onchange = function () {}
<input type="text" ng-model="x" ng-change="onchange()" ng-model-options="{updateOn: 'blur'}"/>
ng-blur を使用し、(Jason が言ったように) ハンドラーを使用して input class="ng-dirty" をチェックすると、入力値が変更されたかどうかがわかります。