法丁停止了工作

时间:2014-06-02 19:40:56

标签: javascript jquery fadein

我正在更新一些html,并且由于某些未连接的原因,logo before the footer stooped工作的淡入淡出 - 徽标应该在页面末尾淡入时显示:

<script>
$(document).ready(function(){

    // hide #townEnd first
    $("#townEnd").hide();

    // fade in #townEnd
    $(function () {
        $(window).scroll(function () {
if($(window).scrollTop() + $(window).height() >= $(document).height() -300) {
                $('#townEnd').fadeIn();
            } else {
                $('#townEnd').fadeOut();
            }
        });

        // scroll body to 0px on click
        $('#townEnd a').click(function () {
            $('body,html').animate({a
                scrollTop: 0
            }, 800);
            return false;
        });
    });

});
</script>

HTML:

  <div id="townEnd">
    <a href="#">Inside<%=Session("PublicFranchiseName")%></a>
  </div>

它收到未被捕获的语法错误:意外标识符 赞赏的想法

1 个答案:

答案 0 :(得分:0)

你有一个浮动的a。这应该工作

<script>
$(document).ready(function(){

    // hide #townEnd first
    $("#townEnd").hide();

    // fade in #townEnd
    $(function () {
        $(window).scroll(function () {
if($(window).scrollTop() + $(window).height() >= $(document).height() -300) {
                $('#townEnd').fadeIn();
            } else {
                $('#townEnd').fadeOut();
            }
        });

        // scroll body to 0px on click
        $('#townEnd a').click(function () {
            $('body,html').animate({
                scrollTop: 0
            }, 800);
            return false;
        });
    });

});
</script>