首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

做了个母版页,有俩个div,其中一个div1是一个小窗口,随着滚动条的滚动而滚动,该怎么解决

2012-02-02 
做了个母版页,有俩个div,其中一个div1是一个小窗口,随着滚动条的滚动而滚动,scriptlanguage javascript

做了个母版页,有俩个div,其中一个div1是一个小窗口,随着滚动条的滚动而滚动,
<script   language= "javascript ">
function   init()
{
document.all.div1.style.pixelLeft   =   document.body.clientWidth   -   document.all.div1.style.pixelWidth;
document.all.div1.style.pixelTop     =   10;
window.document.body.onresize   =   resizeDiv;
timer_name   =   setInterval( "timer_func(); ",100);
}

function   resizeDiv()
{
document.all.div1.style.pixelLeft   =   document.body.clientWidth   -   document.all.div1.style.pixelWidth;
document.all.div1.style.pixelTop     =   0;
}

function   timer_func()
{
document.all.div1.style.pixelTop   =   document.body.scrollTop+10;
}
</script>

<body       onload= "init() ">

<form   id= "default_master "   runat= "server ">    
<div>
</div>
    </form>

<div   style= "position:absolute;text-align:   center;left:0;top:0;width:89;height:100;background-color:yellow "   id=div1   >
内容
</div>
</body>

</HTML>


在html是正常滚动的,可一放到母版页中就不行了,谁给看看

[解决办法]
网上重新找个,嘿嘿。

热点排行