相关尺寸

获取元素相对于文档的偏移量

var pos = $('#small').offset();

// console.log(pos.left);

// console.log(pos.top);

获取当前元素相对于父级元素的偏移量

var l = $('#small').position().left;

var t = $('#small').position().top;

// console.log(l,t);

获取文档滚动距离

var st = $(window).scrollTop();

var sl = $(window).scrollLeft();

设置文档滚动距离

// $(window).scrollTop(100);

// $(window).scrollLeft(200)

获取元素的宽度和高度

var w = $('#big').width();

var h = $('#big').height();

设置元素的宽度和高度

$('#big').width(400);

$('#big').height(400);

// console.log(w,h);

获取可视区域的宽度和高度

var cw = $(window).width();

var ch = $(window).height();

获取文档的宽度和高度

var cw = $(document).width();

var ch = $(document).height();

console.log(cw,ch);