如何检查滚动条是否可见?
overflow:auto
例如:
HTML
<div id="my_div" style="width: 100px; height:100px; overflow:auto;" class="my_class"> * content</div>
jQuery
$('.my_class').live('hover', function (event){ if (event.type == 'mouseenter') { if( ... if scrollbar visible ? ... ) { alert('true'): } else { alert('false'): } }});
12345678_0001
浮云间
呼唤远方
相关分类