sharepoint 2010 页面刷新时滚动条位置保持不变 Controlling scrollbar position on postback

在sharepoint 2010中,如果当前页面的篇幅比较长,如何在拉动页面滚动条时,在刷新的条件下,保持滚动条位置,研究了一下,发现sharepoint 2010的母板页,和普通的asp.net页面有不太一样的地方,是通过一个属性document.getElementById("s4-workspace").scrollTop来控制的,以下是实现的脚本,只需要修改一下v4.master母版页,在里面添加一个javascript的方法。

html {overflow: auto;}/*better than on the body

  body {
     xoverflow:hidden;/*Needed to eliminate scrollbars*/
     background:#000;
     font: normal 80%/1.4  verdana, arial, sans-serif;  
 }
  </style>
  <script>
   window.onload =function()
   { 
       document.getElementById("s4-workspace").scrollTop=1;
       document.body.scroll='yes';
       document.getElementById("s4-workspace").style.overflow='auto';
    }
  </script>

在IE7,IE8,IE9,Google Chrome谷歌浏览器中,测试通过。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值