日期:2014-05-16 浏览次数:20531 次
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
    *{ margin:0; padding:0;}
    body{ background:#CCC;}
    .wrapper{ position:relative; width:500px; height:500px; background:#FFF;}
    .box{ position:absolute; top:10px; right:20px; width:150px; height:100px; background:green;}
</style>
<script type="text/javascript">
window.onload=function(){
    
    var box=document.getElementById('box');
    
    window.onscroll=function(){
        
        var scrollTop=document.documentElement.scrollTop||document.body.scrollTop;
        document.title=scrollTop;
        box.style.top=(scrollTop+10)+'px';
    }
};
</script>
</head>
<body style="height:3000px;">
<div class="wrapper">
    <div class="box" id="box"></div>
</div>
</body>
</html>