跳转到页面固定位置

来源:互联网 发布:淘宝女模特名字大全 编辑:程序博客网 时间:2024/05/18 15:29
1.按钮跳转到顶部
<div class="top" id="yf_top">
        <div class="top_c"></div>
</div>
 
设置ID跳转到顶部
<a href="#yf_top" class="icon-totop"></a>
 
2.页一打开就显示到指定的位置
<script type="text/javascript">
        window.onload = MyAutoRun; //仅需要加这一句
        function MyAutoRun() {
            window.scrollBy(0,420);
        }        
</script>
 
window.scrollBy(dx,dy)第一个相对移动(dx,dy),
window.scrollTo(x,y),第二个绝对移动到(x,y) 

 

0 0