更改桌面上的鼠标光标,但不是更改

ber*_*mme 0 html css

我搜索一种方法来改变行上的鼠标光标但不是一个标题(th)

我创建了一个例子

http://jsfiddle.net/9xckcuze/

table{
    cursor: pointer;
}
Run Code Online (Sandbox Code Playgroud)

Min*_*han 7

th标签添加css :

table{
    cursor: pointer;
}
table th{
  cursor:default;
}
Run Code Online (Sandbox Code Playgroud)