我尝试给出" scrollHeight"值为" scrollTop"使用JQuery的属性。
我在互联网上发现了很多文章,但解决方案不起作用。
我在这里
$(".show").each(function() {
var test = $(this).prop('scrollHeight');
// test return a type 'number'
// test return value '2000'
$(this).scrollTop(test);
});
如果我用
进行测试 $(this).scrollTop(2000);
有效!
我的测试与JSFiddle的链接:https://jsfiddle.net/Geo_x/fv8pfLap/2/