首頁  >  文章  >  web前端  >  jQuery實作自動捲動到頁面頂端的方法_jquery

jQuery實作自動捲動到頁面頂端的方法_jquery

WBOY
WBOY原創
2016-05-16 15:57:541411瀏覽

本文實例講述了jQuery實作自動捲動到頁面頂端的方法。分享給大家供大家參考。具體實作方法如下:

$(".scroll").click(function(event)
{
  //prevent the default action for the click event
  event.preventDefault();
  //get the full url - like mysitecom/index.htm#home
  var full_url = this.href;
  //split the url by # and get the anchor target 
  //name - home in mysitecom/index.htm#home
  var parts = full_url.split("#");
  var trgt = parts[1];
  //get the top offset of the target anchor
  var target_offset = $("#"+trgt).offset();
  var target_top = target_offset.top;
  //goto that anchor by setting the body scroll top to anchor top
  $('html, body').animate({scrollTop:target_top}, 500);
});​

希望本文所述對大家的jQuery程式設計有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn