摘要:
登录 取消 用户名: 密 码: 阅读全文
摘要:
HTML:scrollLeft,scrollWidth,clientWidth,offsetWidth到底指的哪到哪的距离之完全详解scrollHeight: 获取对象的滚动高度。 scrollLeft:设置或获取位于对象左边界和窗口中目前可见内容的最左端之间的距离scrollTop:设置或获取位于... 阅读全文
摘要:
js获取宽高2010-04-01 17:52IE中:document.body.clientWidth ==> BODY对象宽度document.body.clientHeight ==> BODY对象高度document.documentElement.clientWidth ==> 可见区域宽度... 阅读全文
摘要:
//背景层加入页面 //以下部分实现弹出层的拖拽效果 var posX; var posY; Idiv.onmousedown=function(e) { if(!e) e = window.event; //IE posX = e.clientX - parseInt(Idiv.style.lef... 阅读全文