如何设置游标:hand for jquery data table

时间:2013-04-18 06:48:33

标签: javascript css html5 datatables

我需要设置cursor:hand用于特定的jquery数据表行选择。我试试这段代码但不能正常工作。

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

3 个答案:

答案 0 :(得分:12)

答案很简单:

<table class="display" id="table" style="cursor:pointer" width="100%"> </table>

答案 1 :(得分:5)

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

答案 2 :(得分: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;

}

JQUERY

$(document).ready(function () {
        $(".teaser").addClass("js")
    });