假设我有一个表,它显示来自后端服务的数据行,如下所示:
<table>
<tr ng-repeat="item in rows">
<td>
<span>
{{item.amount}}
</span>
</td>
</tr>
</table>
如何定义一个BS3工具提示,以便在将鼠标悬停在其上时显示item.otheramount?
答案 0 :(得分:0)
只需在tooltip="{{item.otheramount}}"
旁边添加ng-repeat
或您想要放置它的任何地方。
<强> E.g。强>
<tr ng-repeat="item in rows" tooltip="{{item.otheramount}}">
希望它有所帮助。