ajax分页时,锚点返回到顶部

//ajax分页时锚点跳回顶部,anchor属性在 _siteNav.ftl 页面
    function gotoTop(pageNo){
        $("#anchor").attr("name","anchor"+pageNo);
        location.hash="anchor"+pageNo;
    }


_siteNav.ftl 页面,这是网站最顶端的页面。

<a name="" id="anchor"></a><!--js跳转到锚点-->

你可能感兴趣的:(ajax分页时,锚点返回到顶部)