1 通过 ng-repeat 循环出5条li,然后当鼠标进入的时候,为li增加 class=‘active’。
2<li ng-repeat="tmp in pdData.pdPic track by $index" ng-mouseenter="fun($index)"> <img ng-src="img/proDetail/{{tmp}}"/></li>
4 已经尝试的办法:(1)通过$event.target获取当前元素,然后addClass(‘ active’),但是每次是给li的子元素img增加了class=‘active’;
(2)通过this传递参数发现,this 指向的是当前¥scope,并不是当前元素。
求大神帮帮我吧
相关分类