我正在使用div卷轴并找到了这个javascript。我想转换它,所以我可以使用百分比。
$(document).ready(function() {
$('#example').dataTable( {
"scrollY": 400, /*This changes the height of the DIV Scroller*/
"scrollCollapse": true,
"jQueryUI": true
} );
} );
</script>
&#34; Scrolly&#34;:400,想把它变成%
答案 0 :(得分:0)
尝试计算百分比
var sc = $(window).scrollTop(),
dh = $(document).height(),
ch = $(window).height();
scrollPercent = (sc / (dh-ch)) * 100;