div的高宽可以通过height()和width()来测量,比如

$("div.ss").height();
$("div.ss").width();

获取元素的位置

$("div.ss").offset().top;
$("div.ss").offset().left;