jquery向上滚动页面的写法
$('.arrow_top').on('click',function () {
$body = (window.opera) ? (document.compatMode == "CSS1Compat" ? $('html') : $('body')) : $('html,body');
$body.animate({scrollTop: 0}, 1000);})
$(window).scroll(function() {
if(parseInt($(document).scrollTop())>=300){
$('.arrow_top').fadeIn();
}else{
$('.arrow_top').fadeOut();
}
});
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/18833.html