学习日记--回到首页(jQuery方法)
<!-- html部分 -->
<img class="mobile_foot_ico_fh" src="/statics/images/newPage/mobile_foot_ico_fh.png" alt="">
//js部分
//返回顶部
$(".mobile_foot_ico_fh").click(function(){
$('html , body').animate({scrollTop: 0},'slow');
})
<!-- html部分 -->
<img class="mobile_foot_ico_fh" src="/statics/images/newPage/mobile_foot_ico_fh.png" alt="">
//js部分
//返回顶部
$(".mobile_foot_ico_fh").click(function(){
$('html , body').animate({scrollTop: 0},'slow');
})