PHP实现JS点击点击定位

时间:2023-03-08 17:21:04

点击class='women' 定位到 class='m=foot'
$(".women").on('click',function(){
$("html, body").animate({
scrollTop: $(".m-foot").offset().top }, {duration: 500,easing: "swing"});
return false;
});