getBoundingClientRect()表示元素相对于视窗的集合,left、right、top、bottom(元素的位置)等属性
也可以得到元素的width和height
如: objRect = obj.getBoundingClientRect();
left = objRect.left;
right = objRect.right;
top = objRect.top;
bottom = objRect.bottom;
width = right - left;
height= bottom - top;
时间: 2024-10-17 16:01:08