谁能够给我形象的解释一下,通过body的scrollTop和scrollLeft属性获取层的坐标,然后再算上body的clientHeight和clientWidth,以得到当前层的实时坐标,然后把他们的值减去层本身的宽度和高度,就可以得到层应该放在哪个位置了。其中层是什么概念,js代码,我放上来,求高手指点一下, function posRightCorner(){
a.style.top=document.body.scrollTop+document.body.clientHeight-200;
a.style.left=document.body.scrollLeft+document.body.clientWidth-200;
setTimeout("posRightCorner();",100)//这里定时器,还可以这样用? }
添加回答
举报
0/150
提交
取消