也许这样
⚓{{filename}}
<a ng-click="download(File)">⚓ <img src="images/filePic.png"/>{{filename}}</a>
Run Code Online (Sandbox Code Playgroud)
使用CSS悬停更新
a:hover:after {
content: ' \2693'
}Run Code Online (Sandbox Code Playgroud)
<a ng-click="download(File)"><img src="http://placehold.it/15x15"/> some filename</a>Run Code Online (Sandbox Code Playgroud)
使用CSS悬停游标更新2
a:hover {
cursor: url('https://onedrive.live.com/download?resid=EC849DFEDB797EB9!1066&authkey=!AEmDTZM6b8_Ies0&ithint=file%2ccur'),auto;
}Run Code Online (Sandbox Code Playgroud)
<a ng-click="download(File)"><img src="http://placehold.it/15x15"/> some filename</a>
<br><br>
Note there is a small delay (first time hovering) from OneDrive before the anchor showsRun Code Online (Sandbox Code Playgroud)