$(window).scroll(function(){var st = $(document).scrollTop();st >= 1000 ?$(".to-top").show(500) : $(".to-top").hide()$(".to-top").click(function () {$("html,body").animate({'scrollTop': 0,}, 200)return false;})})请大牛指教下,谢谢
1 回答
已采纳
慕用0418482
TA贡献98条经验 获得超15个赞
点击事件位置拿到外面来
$(window).scroll(function(){ var st = $(document).scrollTop(); st >= 1000 ? $(".to-top").show(500) : $(".to-top").hide() }) $(".to-top").click(function () { $("html,body").animate({ 'scrollTop': 0,}, 200) return false; })
- 1 回答
- 0 关注
- 1337 浏览
添加回答
举报
0/150
提交
取消