「ng-if」を含む画像で「ng-mouseover」ディレクティブを使用しようとしていますが、機能しませんが、「ng-show」ディレクティブを使用すると機能します。理由を教えてもらえますか? それともAngularJSの問題ですか?
AngularJS のドキュメントでは、それについて何も読むことができません: https://docs.angularjs.org/api/ng/directive/ngMouseover
NG-ショー
<button ng-show="true" ng-mouseover="countOne = countOne + 1" ng-init="countOne=0">
Increment (when mouse is over)
</button>
Count: {{countOne}}
ng-if
<button ng-if="true" ng-mouseover="countTwo = countTwo + 1" ng-init="countTwo=0">
Increment (when mouse is over)
</button>
Count: {{countTwo}}