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

前端之家收集整理的这篇文章主要介绍了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跳转到锚点-->

原文链接:https://www.f2er.com/ajax/165416.html

猜你在找的Ajax相关文章