我有一张表,其中一列显示员工的员工 ID。当鼠标移到上面时,我需要在那里显示名称。任何人都可以帮我吗?
问问题
49368 次
2 回答
77
alt
是一个属性,不是标签,它不是鼠标悬停,它在图像未加载时显示,尝试title
使用
所以试试这个
<table>
<tr>
<td title="Employee Name">1</td>
<td title="Another Employee Name">2</td>
</tr>
</table>
于 2012-12-13T15:45:24.253 回答
0
用于title
这个问题。这是比较容易的解决方案
<table>
<tr>
<td title="Employee Name."> Employee ID</td>
</tr>
</table>
于 2018-07-17T12:45:52.407 回答