未捕获的TypeError:$不是函数

未捕获的TypeError:$不是函数

问题描述:

我无法解决控制台出现此错误的问题:未捕获TypeError:$不是函数。这是它指向的代码:

I can't solve this problem where the console gives this error: Uncaught TypeError: $ is not a function. This is the code it points to:

<script type="text/javascript">
$(document).ready(function() {
    $(".linky").click(function(){
        var t = $(this); //<-ERROR POINTS HERE
        var y = $("#0"+t.attr("id")).offset().top;
        $('html,body').animate({scrollTop: y},500);
    });
});
</script>

我们非常感谢任何帮助!

Any help would be much appreciated!

您需要包含jquery脚本

You need to include the jquery script

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>