查了N多的资料,现在终于解决了,MD,自已写了一个,代码很简单!在FIREFOX IE7 IE6中我测了,没有问题,我想有很多都也在找这样的代码,贴出来和大家分享吧!
//这一行写了这个DIV是绝对定位,最好再加一下z-index;边框为1px的实线黑色边;距右边有0PX; ID=AD;
<script>
<br>function rightBottomAd(){
<br> var abc = document.getElementById("ad");
<br> abc.style.top = document.documentElement.scrollTop+document.documentElement.clientHeight-20+"px";//20是这个层的高度;
<br> setTimeout(function(){rightBottomAd();},50);
<br>}
<br>rightBottomAd();
<br></script>