そのため、背景画像を含む多くの div を作成し、特定の div にカーソルを合わせると背景画像を無効にしようとしています。
<div id="interest" class="col-md-4 col-sm-6" ng-repeat="interest in vm.interestList"
ng-init="myStyle={'background-image': 'url(interest.src)'}"
ng-style="myStyle" ng-mouseenter="myStyle={}"
ng-mouseleave="myStyle={'background-image': 'url(interest.src)'}">
<button id="interestButton" class="btn btn-default btn-lg" >{{interest.interestName}}</button>
</div>
何らかの理由で、ng-init の myStyle は、interest.src の実際の値を取得せず、単に「interest.src」を取得します。{{interest.src}} も試しましたが、うまくいきません。
どんな助けでも大歓迎です!!