function repos(x,y){ //x、y分别是你广告框的宽度和高度
layid = document.getElementById("ddiv") //ddiv的广告框div的id
layid.style.left = (document.documentElement.scrollLeft + document.documentElement.clientWidth - x)+"px"
layid.style.top = (document.documentElement.scrollTop + document.documentElement.clientHeight - y)+"px"
}
</script>
这是广告框的css:style="position:absolutez-index:1width:175pxheight:80px"
然后把上面这个repos(x,y)函数同时用到onload、onscroll、onresize的事件中
建议使用css实现,效果更佳,使用position: fixed,固定定位,具体位置的调整是用top、left、right、bottom也可以使用margin调整css实现代码
<div style="position: fixedtop:100pxleft: autoright: auto bottom: auto" ></div>
一般的网站的浮动广告以及浮动菜单等可以使用fixed来实现,js的话需要计算位置以及滚动条滚动时触发事件从而进行计算使用window.onscroll事件代码如下
HTML部分代码
<div style="position:absolutebackground-color:redwidth: 50pxheight: 50px" id="box"></div>
Javascript部分代码
window.onscroll=function(){
var box= document.getElementById("box")
var t = document.documentElement.scrollTop || document.body.scrollTop
box.style.top=t+"px"
}