用 Javascript 获取滚动条位置等信息

时间:2020-12-02 10:27:26
function getScroll() {
	var t, l, w, h;
	if (document.documentElement && document.documentElement.scrollTop)
	{
		t = document.documentElement.scrollTop;
		l = document.documentElement.scrollLeft;
		w = document.documentElement.scrollWidth;
		h = document.documentElement.scrollHeight;
	} else if (document.body) {
		t = document.body.scrollTop;
		l = document.body.scrollLeft;
		w = document.body.scrollWidth;
		h = document.body.scrollHeight;
	}
	return { t: t, l: l, w: w, h: h };
}