滚动值无法进入内容页面

时间:2012-06-08 10:15:13

标签: javascript jquery jquery-ui

我尝试获取滚动高度,以这种方式滚动内容页面div的顶部

但结果未定义

var scrolltop = $('#DivUserWebDetail').attr('scrollTop');
//scroll height 
var scrollheight = $('#DivUserWebDetail').attr('scrollHeight');
//client height 
var windowheight = $('#DivUserWebDetail').attr('clientHeight');
“DivUserWebDetail”是我的内容页面divwhich height 400px and overflow hidden

请提供任何解决方案

1 个答案:

答案 0 :(得分:1)

它是.prop('scrollHeight');而不是.attr('scrollHeight');