我正在使用ng-repeat填充圖像列表。我需要使用$ index來命名圖像,並使用它來替換預覽div的src。 $ index在鼠標懸停部分沒有替換,而在名稱部分替換它。可能是什麼原因以及如何糾正它。
<img onmouseover="preview.src=img{{$index}}.src" name="img{{$index}}" src="{{image.SMALL_PATH}}" alt="" ng-repeat="image in images | filter:query"/>
<div class="preview" align="center">
<img name="preview" src="images/img1.jpg" alt=""/>
</div>
建議你多學習一些角度教程。不要嘗試在角度視圖中混合本地事件。上下文是完全不同的 – charlietfl