为什么我的对象没有隐藏在scrollTo jQuery中?

时间:2018-12-31 12:32:11

标签: jquery

我不知道为什么网站顶部的浏览器没有隐藏向上滚动图标。有人可以告诉我更多吗?

<script>

    jQuery(function($)
    {
        $.scrollTo(0);
        $('.tothetop').click(function() {$.scrollTo($('body'), 1000); });
    }
    );

    $(window).scroll(function()
    {
        if($(this).scrollTop()>300) $('.tothetop').fadeIn().top;
        else $('.tothetop').fadeOut();      
    }
    );

</script>

.tothetop类是标记的目标。

1 个答案:

答案 0 :(得分:0)

按照您给出的代码,似乎您需要向调用函数 scrollTo()添加对象,该函数具有x轴和y轴两个参数

window.scrollTo(0,0);
$('.tothetop').click(function() {$.scrollTo($('body'), 1000); });

$(window).scroll(function()
{
    if($(this).scrollTop()>1000) $('.tothetop').fadeIn().top;
    else $('.tothetop').fadeOut();      
}
);

请尝试使用上面的代码来满足您提到的要求。 希望对您有所帮助。