标签:技术分享 pre 设置 bsp 技术 包括 设备 ges com
最近学了DOM,BOM,还有鼠标事件,对于这里面的各种什么可视区宽高,获取混杂模式下的滚动条距离,以及鼠标到屏幕,文档,可视区的距离绕来绕去都给弄混乱了,因此专门写一遍文章来总结,理清思路。
首先,先总结DOM元素身上的各种属性和方法。
规定:从内到外,依次是div1,div2,body。
div1.offsetLeft=div1.getBoundingClientRect( ).left;
div1.offsetTop=div1.getBoundingClientRect( ).Top;
div1.offsetwidth=div1.getBoundingClientRect( ).width;
div1.offsetHeight=div1.getBoundingClientRect( ).height;
div1.offsetLeft+div1.offsetWidth=div1.getBoundingClientRect( ).right;
div1.offseTop+div1.offsetHeight=div1.getBoundingClientRect( ).bottom;
BOM:
事件对象:
标签:技术分享 pre 设置 bsp 技术 包括 设备 ges com
原文地址:http://www.cnblogs.com/AngliaXu/p/7153116.html