14
如何使用jQuery上下滚动页面至锚点?
我正在寻找一种在您单击页面上方或下方指向本地锚点的链接时包含幻灯片效果的方法。 我想要一些您有这样链接的东西: <a href="#nameofdivetc">link text, img etc.</a> 也许添加了一个类,所以您知道希望此链接为滑动链接: <a href="#nameofdivetc" class="sliding-link">link text, img etc.</a> 然后,如果单击此链接,页面将向上或向下滑动到所需位置(可以是div,标题,页面顶部等)。 这是我以前的经历: $(document).ready(function(){ $(".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 - …