当鼠标悬停在角度时,我想在我的网址上添加一个锚符号。这是我的代码,
<a ng-click="download(File)"><img src="images/filePic.png"/>{{filename}}</a>
答案 0 :(得分:5)
像这样可能
⚓{{filename}}
PictureBox
使用CSS hover进行更新
tableLayoutPanel6.RowSpan = 8 // number of rows the control must use in its parent TableLayoutPanel
<a ng-click="download(File)">⚓ <img src="images/filePic.png"/>{{filename}}</a>
使用CSS悬停游标更新2
a:hover:after {
content: ' \2693'
}
<a ng-click="download(File)"><img src="http://placehold.it/15x15"/> some filename</a>