2013-04-18 23 views

回答

10

這就是答案,簡單:

<table class="display" id="table" style="cursor:pointer" width="100%"> </table> 
3
$(document).ready(function() { 
    $("#table tr").css('cursor', 'pointer'); 
}); 
+0

我需要的手形符號 – 2013-04-18 06:56:45

+0

它使手形符號嘗試 – Arunkumar 2013-04-18 06:57:22

+0

我已經嘗試沒有給出符號 – 2013-04-18 07:05:59

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") 
    });