如何獲得最高價值?scrollpath.js獲得最高價值
<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);}
});
,但它不工作 - 任何線索?
這篇文章可能是內容豐富的[這裏](http://stackoverflow.com/questions/6777506/offsettop-vs-jquery-offset-top) – krg