2011-03-24 63 views

回答

2
$('.selector:disabled').live('hover', function() { 
    $(this).css('cursor','default'); 
} 
$('.selector').not(':disabled').live('hover', function() { 
    $(this).css('cursor', 'pointer'); 
} 

这是一个jQuery的方式。

3

CSS应该做的伎俩

img { 
    cursor:pointer; 
}