网站开发方向行业现状,网络程序设计学什么,如何做双版网站,被传媒公司骗了钱怎么办如何使用jQuery向上或向下滚动页面到锚点#xff1f;我正在寻找一种方法来包含幻灯片效果#xff0c;当您单击页面上或下的本地锚点链接时。我想要一个你有这样一个链接的东西#xff1a;link text, img etc.也许添加了一个类#xff0c;所以你知道你希望这个链接是一个滑动…如何使用jQuery向上或向下滚动页面到锚点我正在寻找一种方法来包含幻灯片效果当您单击页面上或下的本地锚点链接时。我想要一个你有这样一个链接的东西link text, img etc.也许添加了一个类所以你知道你希望这个链接是一个滑动链接link text, img etc.然后如果单击此链接页面将向上或向下滑动到所需位置(可以是div标题页面顶部等)。这就是我以前的情况$(document).ready(function(){$(.scroll).click(function(event){//prevent the default action for the click eventevent.preventDefault();//get the full url - like mysitecom/index.htm#homevar full_url this.href;//split the url by # and get the anchor target name - home in mysitecom/index.htm#homevar parts full_url.split(#);var trgt parts[1];//get the top offset of the target anchorvar 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}, 1500, easeInSine);});});