如何检查滚动条是否可见?演示
2022-08-29 23:55:56
是否可以检查 div 的 ?overflow:auto
例如:
断续器
<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'):
}
}
});
有时内容较短(无滚动条),有时很长(滚动条可见)。