定位页面到某处

来源:互联网 发布:淘宝客佣金是什么 编辑:程序博客网 时间:2024/04/30 04:31

<script type="text/javascript">
  function reLocator(obj){
  alert(obj);
   
   document.getElementById(obj).scrollIntoView();
  }
 </script>

 

 

<div id="locator_p" class="SectL Head1 SectLphotosT">Photos</div>

 

 

<a href="#" onclick="reLocator('locator_p')">ReLocation</a>

 

 

点击超链接 ReLocation 即可定位到 Photos 的位置!