我如何改变指针指针手当我的鼠标在<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>

当前回答

对于只是一个标准的解决方案,但如果你使用的是数据表,你必须覆盖默认的datatatable .css设置,并添加以下代码自定义css,在下面的代码行选择是类,我添加的数据表显示在html。

table.row-select.dataTable tbody td
{
cursor: pointer;    
}

你的html将如下所示:

<table datatable="" dt-options="dtOptions1" dt-columns="dtColumns1" class="table table-striped table-bordered table-hover row-select"  id="datatable"></table>

其他回答

我发现最简单的方法就是相加

style="cursor: pointer;"

到你的标签。

你可以用CSS来做这个。

.sortable tr {
    cursor: pointer;
}

对于只是一个标准的解决方案,但如果你使用的是数据表,你必须覆盖默认的datatatable .css设置,并添加以下代码自定义css,在下面的代码行选择是类,我添加的数据表显示在html。

table.row-select.dataTable tbody td
{
cursor: pointer;    
}

你的html将如下所示:

<table datatable="" dt-options="dtOptions1" dt-columns="dtColumns1" class="table table-striped table-bordered table-hover row-select"  id="datatable"></table>

我把这个添加到我的style.css来管理游标选项:

.cursor-pointer {cursor: pointer;}
.cursor-crosshair {cursor: crosshair;}
.cursor-eresize {cursor: e-resize;}
.cursor-move {cursor: move;}

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

[role=button]{cursor:pointer}

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

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