是否可以检查overflow:autodiv的?
例如:
HTML
<div id="my_div" style="width: 100px; height:100px; overflow:auto;" class="my_class"> 
  * content
</div>
查询
$('.my_class').live('hover', function (event)
{
    if (event.type == 'mouseenter')
    {
         if( ...  if scrollbar visible ? ... )
         {
            alert('true'):
         }
         else
         {
            alert('false'):
         }
    }
});
有时内容很短(没有滚动条),有时很长(滚动条可见)。