6

我需要设置光标:用于特定 jquery 数据表行选择的手。我尝试使用此代码但不工作。

 $(document).ready(function () {
        $("#table tr").css('cursor', 'hand');
    });
4

3 回答 3

15

这就是答案,很简单:

<table class="display" id="table" style="cursor:pointer" width="100%"> </table>
于 2013-04-18T07:10:50.443 回答
5
$(document).ready(function () {
    $("#table tr").css('cursor', 'pointer');
});
于 2013-04-18T06:51:09.303 回答
0

用这个

HTML

<div class="teaser">
    <img src="http://lorempixel.com/output/animals-q-c-189-137-4.jpg">
</div>

CSS

.teaser {
   border-radius: 100%;
overflow: auto;
display: table-caption;
}
.js
{
   cursor: -webkit-grab;
   cursor: -Moz-grab;

}

查询

$(document).ready(function () {
        $(".teaser").addClass("js")
    });
于 2013-04-18T07:05:39.173 回答