如何让行悬停以显示适当的光标

How to get the row hover to show an appropriate cursor

由于我的 jQuery DataTable 行可以通过拖放进行排序,如何让脚本在悬停时显示适当的光标?您可以拖动行并不明显。如果您单击并拖动,光标将变为移动光标,但在悬停期间您将获得 I 栏或标准箭头光标。

您需要在行的 css 中使用 cursor:move 规则。

tr:hover {
    cursor:move;
}

相应地调整 css 与任何 类 你也想附加这个 css (例如 .my-draggable-table tr:hover {...})

这是在 CSS 中完成的:

.foo {
  cursor: move;
}

或者:

.bar {
  cursor: pointer;
}