我如何获得追随最高价值?
<div class="sp-scroll-handle" style="top: 1.0416666666666665px; "> </div>
这个值是由一些javascript创建的,我认为它如下:
function dragScrollHandler( e ) {
var dragStep,
y = e.clientY - scrollBar.offset().top;
dragStep = limitWithin( Math.round( y / scrollBar.height() * ( pathList.length - 1 ) ), 0, pathList.length - 1 );
scrollToStep( snap(dragStep, STEP_SIZE) );
}
现在我需要这个值,我试过这个:
$('.sp-scroll-handle').scroll(function () {
var top_value = $('.sp-scroll-handle').css("top");
$('.settings b').text(top_value);}
});
但它不起作用 - 有什么线索吗?