我如何改变指针指针手当我的鼠标在<tr>在<表>

<table class="sortable" border-style:>
  <tr>
    <th class="tname">Name</th><th class="tage">Age</th>
  </tr>
  <tr><td class="tname">Jennifer</td><td class="tage">24</td></tr>
  <tr><td class="tname">Kate</td><td class="tage">36</td></tr>
  <tr><td class="tname">David</td><td class="tage">25</td></tr>
  <tr><td class="tname">Mark</td><td class="tage">40</td></tr>
</table>

当前回答

使用css

table tr:hover{cursor:pointer;} /* For all tables*/
table.sortable tr:hover{cursor:pointer;} /* only for this one*/

其他回答

使用css

table tr:hover{cursor:pointer;} /* For all tables*/
table.sortable tr:hover{cursor:pointer;} /* only for this one*/

使用样式游标:指针;CSS中你想要光标改变的元素。

在你的例子中,你会使用(在你的.css文件中):

.sortable {
    cursor: pointer;
}

添加光标:指向css的指针。

我搜索了一下引导样式,发现了这个:

[role=button]{cursor:pointer}

所以我认为你可以得到你想要的:

<span role="button">hi</span>

内联样式的示例:

< table > <tr> <td style=“光标:指针;”鼠标我over:指针</td> </tr> <tr> <td style=“cursor: wait;”>鼠标我over: wait</td> </tr> <tr> <td style=“cursor: zoom-in;”>鼠标我over: zoomin </td> </tr> - < table >